Skip to content

Commit

Permalink
Update links in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
jimhester committed Nov 8, 2018
1 parent 27ea9ca commit 33ef57a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
^CRAN-RELEASE$
^.*\.png$
^.*\.gif$
^\.travis\.yml$
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# lintr
[![Travis-CI Build Status](https://travis-ci.org/jimhester/lintr.svg?branch=master)](https://travis-ci.org/jimhester/lintr)
[![codecov.io](http://codecov.io/github/jimhester/lintr/coverage.svg?branch=master)](http://codecov.io/github/jimhester/lintr?branch=master)
[![codecov.io](https://codecov.io/github/jimhester/lintr/coverage.svg?branch=master)](http://codecov.io/github/jimhester/lintr?branch=master)
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/lintr)](https://cran.r-project.org/package=lintr)

## Static code analysis for R ##
Expand Down Expand Up @@ -87,10 +87,10 @@ For more information and bug reports see [Atom linter-lintr](https://github.com/

## Available linters ##

* `Syntax errors`: reported by [parse](http://www.inside-r.org/r-doc/base/parse).
* `Syntax errors`: reported by [parse](https://www.rdocumentation.org/packages/base/versions/3.4.0/topics/parse).
* `object_usage_linter`: checks that closures have the proper usage using
[codetools::checkUsage()](http://www.inside-r.org/r-doc/codetools/checkUsage). Note this runs
[base::eval()](http://www.inside-r.org/r-doc/base/eval) on the code, so do not use with untrusted code.
[codetools::checkUsage()](https://www.rdocumentation.org/packages/codetools/versions/0.2-15/topics/checkUsage). Note this runs
[base::eval()](https://www.rdocumentation.org/packages/base/versions/3.4.0/topics/eval) on the code, so do not use with untrusted code.
* `absolute_paths_linter`: checks that no absolute paths are used.
* `assignment_linter`: checks that `<-` is always used for assignment
* `closed_curly_linter`: check that closed curly braces should always be on their
Expand Down

0 comments on commit 33ef57a

Please sign in to comment.