Files
ale/test/linter/test_npmgroovylint.vader
w0rp ae1d051504 #4454 Clean up more tests and code
* Remove some tests we no longer need
* Delete blocks of redundant code
* Compress some tests together to simplify them
* Remove a little code for ancient linter versions
* Escape more executables we didn't escape before
* Rename a deno option that didn't match our conventions
2023-09-16 22:23:30 +01:00

19 lines
622 B
Plaintext

Before:
Save b:ale_groovy_npmgroovylint_options
call ale#assert#SetUpLinterTest('groovy', 'npmgroovylint')
call ale#test#SetFilename('test.groovy')
After:
call ale#assert#TearDownLinterTest()
Execute(The default npm-groovy-lint command should be correct):
AssertLinter 'npm-groovy-lint',
\ ale#Escape('npm-groovy-lint') . ' --failon none --output json --loglevel warning %t'
Execute(Default options should be configurable):
let b:ale_groovy_npmgroovylint_options = '--loglevel info'
AssertLinter 'npm-groovy-lint',
\ ale#Escape('npm-groovy-lint') . ' --failon none --output json --loglevel info %t'