-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy path.lintr
More file actions
18 lines (18 loc) · 775 Bytes
/
.lintr
File metadata and controls
18 lines (18 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
linters: list(linelen=line_length_linter(80),
abspathlintr=absolute_paths_linter,
assignlintr=assignment_linter,
notab=no_tab_linter,
camellinter=camel_case_linter,
snakelinter=snake_case_linter,
closedcurly=closed_curly_linter,
trailingwhites=trailing_whitespace_linter)
exclusions: list("tests/testthat.R",
"tests/testthat/test_knn.R",
"tests/testthat/test_mrw.R",
"tests/testthat/test_heat.R",
"tests/testthat/test_util.R",
"inst/doc/diffusr.R",
"R/RcppExports.R")
exclude: "# Exclude Linting"
exclude_start: "# Begin Exclude Linting"
exclude_end: "# End Exclude Linting"