mirror of
https://github.com/dense-analysis/ale.git
synced 2026-01-10 05:22:31 +08:00
Add support for npm-groovy-lint (#4495)
* Add support for npm-groovy-lint * Add doc and tests for npm-groovy-lint * Use ale#util#FuzzyJSONDecode instead of json_decode
This commit is contained in:
23
test/fixers/test_npmgroovylint_fixer_callback.vader
Normal file
23
test/fixers/test_npmgroovylint_fixer_callback.vader
Normal file
@@ -0,0 +1,23 @@
|
||||
Before:
|
||||
Save b:ale_groovy_npmgroovylint_fix_options
|
||||
|
||||
call ale#assert#SetUpFixerTest('groovy', 'npm-groovy-lint')
|
||||
|
||||
After:
|
||||
Restore
|
||||
|
||||
call ale#assert#TearDownFixerTest()
|
||||
|
||||
Execute(The callback should return the correct default values):
|
||||
AssertFixer {
|
||||
\ 'read_temporary_file': 1,
|
||||
\ 'command': ale#Escape('npm-groovy-lint') . ' --fix %t',
|
||||
\ }
|
||||
|
||||
Execute(The callback should include custom options):
|
||||
let b:ale_groovy_npmgroovylint_fix_options = '--format'
|
||||
|
||||
AssertFixer {
|
||||
\ 'read_temporary_file': 1,
|
||||
\ 'command': ale#Escape('npm-groovy-lint') . ' --format %t',
|
||||
\ }
|
||||
Reference in New Issue
Block a user