We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
.lintr.R
1 parent 5ce59ea commit 45354cfCopy full SHA for 45354cf
.Rbuildignore
@@ -18,6 +18,6 @@
18
^man-roxygen$
19
^LICENSE\.md$
20
^MAINTENANCE\.md$
21
-^\.lintr$
+^\.lintr\.R$
22
^notes$
23
^CRAN-SUBMISSION$
.lintr renamed to .lintr.R
@@ -1,4 +1,5 @@
1
-linters: funs <- c(
+linters <- list(lintr::undesirable_function_linter(
2
+ fun = c(
3
# Base messaging
4
"message" = "use cli::cli_inform()",
5
"warning" = "use cli::cli_warn()",
@@ -12,8 +13,6 @@ linters: funs <- c(
12
13
"cli_alert_info" = "use cli::cli_inform()",
14
"cli_alert_success" = "use cli::cli_inform()",
15
"cli_alert_warning" = "use cli::cli_inform()"
- )
16
- list(lintr::undesirable_function_linter(
17
- fun = funs,
- symbol_is_undesirable = FALSE
- ))
+ ),
+ symbol_is_undesirable = FALSE
+))
0 commit comments