-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #167 from JanMarvin/lintr
Add lintr config
- Loading branch information
Showing
7 changed files
with
35 additions
and
24 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
linters: with_defaults( | ||
line_length_linter = NULL, # we have many long lines | ||
cyclocomp_linter = NULL, # | ||
commented_code_linter = NULL, # | ||
snake_case_linter = NULL, # we prefered camel case | ||
trailing_whitespace_linter = NULL, # have a few cases | ||
commas_linter = NULL, # | ||
paren_brace_linter = NULL, # | ||
object_name_linter = NULL, # more camel case | ||
infix_spaces_linter = NULL, # | ||
function_left_parentheses_linter = NULL, # | ||
spaces_inside_linter = NULL, # | ||
spaces_left_parentheses_linter = NULL, # | ||
no_tab_linter = NULL, # | ||
single_quotes_linter = NULL, # | ||
object_length_linter = NULL, # | ||
assignment_linter = NULL # just one case | ||
) |
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 |
---|---|---|
|
@@ -61,4 +61,4 @@ cat(allStrs) | |
|
||
|
||
|
||
# nolint end | ||
# nolint end |
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
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