"R-package/man/setinfo.Rd" did not exist on "0eb9921991d21f7a61f5404494bad810811b1209"
lint_r_code.R 4.33 KB
Newer Older
1
2
3
4
5
6

library(lintr)

args <- commandArgs(
    trailingOnly = TRUE
)
7
SOURCE_DIR <- args[[1L]]
8
9
10

FILES_TO_LINT <- list.files(
    path = SOURCE_DIR
11
    , pattern = "\\.r$|\\.rmd$"
12
13
14
15
16
17
18
    , all.files = TRUE
    , ignore.case = TRUE
    , full.names = TRUE
    , recursive = TRUE
    , include.dirs = FALSE
)

19
20
21
22
23
24
25
26
27
28
29
30
# text to use for pipe operators from packages like 'magrittr'
pipe_text <- paste0(
    "For consistency and the sake of being explicit, this project's code "
    , "does not use the pipe operator."
)

# text to use for functions that should only be called interactively
interactive_text <- paste0(
    "Functions like '?', 'help', and 'install.packages()' should only be used "
    , "interactively, not in package code."
)

31
LINTERS_TO_USE <- list(
32
    "absolute_path"          = lintr::absolute_path_linter()
33
    , "any_is_na_linter"     = lintr::any_is_na_linter()
34
35
36
37
38
39
40
    , "assignment"           = lintr::assignment_linter()
    , "braces"               = lintr::brace_linter()
    , "commas"               = lintr::commas_linter()
    , "equals_na"            = lintr::equals_na_linter()
    , "function_left"        = lintr::function_left_parentheses_linter()
    , "implicit_integers"    = lintr::implicit_integer_linter()
    , "infix_spaces"         = lintr::infix_spaces_linter()
41
    , "long_lines"           = lintr::line_length_linter(length = 120L)
42
43
44
45
46
47
48
    , "no_tabs"              = lintr::no_tab_linter()
    , "non_portable_path"    = lintr::nonportable_path_linter()
    , "semicolon"            = lintr::semicolon_linter()
    , "seq"                  = lintr::seq_linter()
    , "single_quotes"        = lintr::single_quotes_linter()
    , "spaces_inside"        = lintr::spaces_inside_linter()
    , "spaces_left_parens"   = lintr::spaces_left_parentheses_linter()
49
    , "todo_comments"        = lintr::todo_comment_linter(c("todo", "fixme", "to-do"))
50
51
52
    , "trailing_blank"       = lintr::trailing_blank_lines_linter()
    , "trailing_white"       = lintr::trailing_whitespace_linter()
    , "true_false"           = lintr::T_and_F_symbol_linter()
53
54
    , "undesirable_function" = lintr::undesirable_function_linter(
        fun = c(
55
56
            "cat" = "CRAN forbids the use of cat() in packages except in special cases. Use message() or warning()."
            , "cbind" = paste0(
57
58
59
                "cbind is an unsafe way to build up a data frame. merge() or direct "
                , "column assignment is preferred."
            )
60
61
            , "dyn.load" = "Directly loading or unloading .dll or .so files in package code should not be necessary."
            , "dyn.unload" = "Directly loading or unloading .dll or .so files in package code should not be necessary."
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
            , "help" = interactive_text
            , "ifelse" = "The use of ifelse() is dangerous because it will silently allow mixing types."
            , "install.packages" = interactive_text
            , "is.list" = paste0(
                "This project uses data.table, and is.list(x) is TRUE for a data.table. "
                , "identical(class(x), 'list') is a safer way to check that something is an R list object."
            )
            , "rbind" = "data.table::rbindlist() is faster and safer than rbind(), and is preferred in this project."
            , "require" = paste0(
                "library() is preferred to require() because it will raise an error immediately "
                , "if a package is missing."
            )
        )
    )
    , "undesirable_operator" = lintr::undesirable_operator_linter(
        op = c(
            "%>%" = pipe_text
            , "%.%" = pipe_text
            , "%..%" = pipe_text
            , "?" = interactive_text
            , "??" = interactive_text
        )
    )
85
    , "unneeded_concatenation" = lintr::unneeded_concatenation_linter()
86
87
)

88
noquote(paste0(length(FILES_TO_LINT), " R files need linting"))
89

90
results <- NULL
91

92
for (r_file in FILES_TO_LINT) {
93
94
95
96
97
98
99

    this_result <- lintr::lint(
        filename = r_file
        , linters = LINTERS_TO_USE
        , cache = FALSE
    )

100
101
102
103
104
105
106
107
    print(
        sprintf(
            "Found %i linting errors in %s"
            , length(this_result)
            , r_file
        )
        , quote = FALSE
    )
108
109
110
111
112
113
114

    results <- c(results, this_result)

}

issues_found <- length(results)

115
116
noquote(paste0("Total linting issues found: ", issues_found))

117
if (issues_found > 0L) {
118
119
120
121
    print(results)
}

quit(save = "no", status = issues_found)