9fe7b1fe6a
Working directories are now set seperately from the commands so they can later be swapped out when running linters over projects is supported, and also better support filename mapping for running linters on other machines in future.
23 lines
727 B
Text
23 lines
727 B
Text
Before:
|
|
call ale#assert#SetUpLinterTest('typescript', 'tslint')
|
|
call ale#test#SetFilename('test.ts')
|
|
|
|
After:
|
|
call ale#assert#TearDownLinterTest()
|
|
|
|
Execute(The default tslint command should be correct):
|
|
AssertLinterCwd '%s:h'
|
|
AssertLinter 'tslint', ale#Escape('tslint') . ' --format json %t'
|
|
|
|
Execute(The rules directory option should be included if set):
|
|
let b:ale_typescript_tslint_rules_dir = '/foo/bar'
|
|
|
|
AssertLinter 'tslint',
|
|
\ ale#Escape('tslint') . ' --format json'
|
|
\ . ' -r ' . ale#Escape('/foo/bar')
|
|
\ . ' %t'
|
|
|
|
Execute(The executable should be configurable and escaped):
|
|
let b:ale_typescript_tslint_executable = 'foo bar'
|
|
|
|
AssertLinter 'foo bar', ale#Escape('foo bar') . ' --format json %t'
|