-
Notifications
You must be signed in to change notification settings - Fork 185
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Draft sequence_linter linter * Fold sequence_linter() into seq_linter() * Add tests * Add NEWS bullet * Switch to xml_find_function_calls * Change element order in xpath * Support lapply(x, seq) * Simplify xpath * Do not lint seq() calls with extra arguments * Edit false positive example * Add more info about new lints in NEWS * update * Update NEWS.md * add Hugo to DESCRIPTION (and clean it up) * change DESCRIPTION --> change Rd --------- Co-authored-by: Michael Chirico <[email protected]> Co-authored-by: Michael Chirico <[email protected]>
- Loading branch information
1 parent
500a38c
commit cf9758a
Showing
6 changed files
with
84 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,14 +4,17 @@ Version: 3.2.0.9000 | |
Authors@R: c( | ||
person("Jim", "Hester", , role = "aut"), | ||
person("Florent", "Angly", role = "aut", | ||
comment = "fangly"), | ||
comment = c(GitHub = "fangly")), | ||
person("Russ", "Hyde", role = "aut"), | ||
person("Michael", "Chirico", email = "[email protected]", role = c("aut", "cre")), | ||
person("Michael", "Chirico", email = "[email protected]", role = c("aut", "cre"), | ||
comment = c(ORCID = "0000-0003-0787-087X")), | ||
person("Kun", "Ren", role = "aut"), | ||
person("Alexander", "Rosenstock", role = "aut", | ||
comment = "AshesITR"), | ||
person("Indrajeet", "Patil", , "[email protected]", role = "aut", | ||
comment = c(ORCID = "0000-0003-1995-6531", Twitter = "@patilindrajeets")) | ||
comment = c(GitHub = "AshesITR")), | ||
person("Indrajeet", "Patil", email = "[email protected]", role = "aut", | ||
comment = c(ORCID = "0000-0003-1995-6531", Twitter = "@patilindrajeets")), | ||
person("Hugo", "Gruson", role = "aut", | ||
comment = c(ORCID = "0000-0002-4094-1476")) | ||
) | ||
Description: Checks adherence to a given style, syntax errors and possible | ||
semantic issues. Supports on the fly checking of R code edited with | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters