-
Notifications
You must be signed in to change notification settings - Fork 0
/
.lintr
36 lines (36 loc) · 1.71 KB
/
.lintr
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
linters: list(
abspathlintr = absolute_path_linter(),
assignlintr = assignment_linter(),
brace = brace_linter(),
comma = commas_linter(),
comment_code = commented_code_linter(),
cyclocomp = cyclocomp_linter(),
equal_na = equals_na_linter(),
left_par = function_left_parentheses_linter(),
infix_spaces = infix_spaces_linter(),
linelen = line_length_linter(80),
notab = whitespace_linter(),
object_length = object_length_linter(),
par_body = paren_body_linter(),
quotes = quotes_linter(),
semicolon = semicolon_linter(),
seq = seq_linter(),
spaces = spaces_inside_linter(),
space_par = spaces_left_parentheses_linter(),
t_f_symbol = T_and_F_symbol_linter(),
blank_lines = trailing_blank_lines_linter(),
trailingwhites= trailing_whitespace_linter(),
vector_logic = vector_logic_linter())
exclusions: list("tests/testthat.R",
"tests/testthat/test-spread_gram.R",
"tests/testthat/test-get_neighbors.R",
"tests/testthat/test-spread_activation.R",
"inst/doc/labyrinth.R",
"vignettes/labyrinth.R",
"vignettes/labyrinth.Rmd",
"vignettes/preface.Rmd",
"vignettes/references.bib",
"R/RcppExports.R")
exclude: "# Exclude Linting"
exclude_start: "# Begin Exclude Linting"
exclude_end: "# End Exclude Linting"