1
0
Fork 0
mirror of synced 2024-06-30 12:31:09 -04:00
ultimate-vim/sources_non_forked/ale/test/linter/test_jshint.vader
2022-05-19 21:16:38 +08:00

18 lines
581 B
Plaintext

Before:
Save g:ale_jshint_config_loc
unlet! g:ale_jshint_config_loc
call ale#assert#SetUpLinterTest('javascript', 'jshint')
After:
call ale#assert#TearDownLinterTest()
Execute(The default command should be correct):
AssertLinter 'jshint', ale#Escape('jshint') . ' --reporter unix --extract auto --filename %s -'
Execute(Setting a config location should add the config parameter):
let g:ale_jshint_config_loc = '/some/file'
AssertLinter 'jshint', ale#Escape('jshint') . ' --reporter unix --extract auto --config ' . ale#Escape('/some/file') . ' --filename %s -'