We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e767f7 commit 0c4c381Copy full SHA for 0c4c381
.lintr
@@ -6,5 +6,11 @@ linters: linters_with_defaults(
6
cyclocomp_linter = NULL, # do not check function complexity
7
commented_code_linter = NULL, # allow code in comments
8
line_length_linter = line_length_linter(120L),
9
- object_length_linter = object_length_linter(40L)
10
- )
+ object_length_linter = object_length_linter(40L),
+ undesirable_function_linter = undesirable_function_linter(fun = c(
11
+ # base messaging
12
+ "stop" = "use stopf()",
13
+ "warning" = "use warningf()",
14
+ "message" = "use messagef()"
15
+ ))
16
+ )
0 commit comments