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