2017-09-03 22:29:12 +00:00
|
|
|
Before:
|
2018-07-15 17:24:53 +00:00
|
|
|
call ale#assert#SetUpLinterTest('r', 'lintr')
|
2017-09-03 22:29:12 +00:00
|
|
|
|
|
|
|
After:
|
2018-07-15 17:24:53 +00:00
|
|
|
call ale#assert#TearDownLinterTest()
|
2017-09-03 22:29:12 +00:00
|
|
|
|
|
|
|
Execute(The default lintr command should be correct):
|
2021-03-01 20:11:10 +00:00
|
|
|
AssertLinterCwd '%s:h'
|
2018-07-15 17:24:53 +00:00
|
|
|
AssertLinter 'Rscript',
|
2021-05-25 00:30:42 +00:00
|
|
|
\ 'Rscript --no-save --no-restore --no-site-file --no-init-file -e '
|
2018-02-01 02:06:35 +00:00
|
|
|
\ . ale#Escape('suppressPackageStartupMessages(library(lintr));'
|
2018-07-15 17:24:53 +00:00
|
|
|
\ . 'lint(cache = FALSE, commandArgs(TRUE), '
|
|
|
|
\ . 'with_defaults())')
|
|
|
|
\ . ' %t'
|
2017-09-03 22:29:12 +00:00
|
|
|
|
|
|
|
Execute(The lintr options should be configurable):
|
2018-02-01 02:06:35 +00:00
|
|
|
let b:ale_r_lintr_options = 'with_defaults(object_usage_linter = NULL)'
|
2017-09-03 22:29:12 +00:00
|
|
|
|
2018-07-15 17:24:53 +00:00
|
|
|
AssertLinter 'Rscript',
|
2021-05-25 00:30:42 +00:00
|
|
|
\ 'Rscript --no-save --no-restore --no-site-file --no-init-file -e '
|
2018-02-01 02:06:35 +00:00
|
|
|
\ . ale#Escape('suppressPackageStartupMessages(library(lintr));'
|
2018-07-15 17:24:53 +00:00
|
|
|
\ . 'lint(cache = FALSE, commandArgs(TRUE), '
|
|
|
|
\ . 'with_defaults(object_usage_linter = NULL))')
|
|
|
|
\ . ' %t'
|
2018-02-04 18:57:52 +00:00
|
|
|
|
|
|
|
Execute(If the lint_package flag is set, lintr::lint_package should be called):
|
|
|
|
let b:ale_r_lintr_lint_package = 1
|
|
|
|
|
2018-07-15 17:24:53 +00:00
|
|
|
AssertLinter 'Rscript',
|
2021-05-25 00:30:42 +00:00
|
|
|
\ 'Rscript --no-save --no-restore --no-site-file --no-init-file -e '
|
2018-02-04 18:57:52 +00:00
|
|
|
\ . ale#Escape('suppressPackageStartupMessages(library(lintr));'
|
2018-07-15 17:24:53 +00:00
|
|
|
\ . 'lint_package(cache = FALSE, '
|
|
|
|
\ . 'linters = with_defaults())')
|
|
|
|
\ . ' %t'
|