2017-08-19 23:05:15 +00:00
|
|
|
Before:
|
2018-07-15 17:24:53 +00:00
|
|
|
call ale#assert#SetUpLinterTest('typescript', 'tslint')
|
2017-10-01 20:23:42 +00:00
|
|
|
call ale#test#SetFilename('test.ts')
|
2017-08-19 23:05:15 +00:00
|
|
|
|
|
|
|
After:
|
2018-07-15 17:24:53 +00:00
|
|
|
call ale#assert#TearDownLinterTest()
|
2017-08-19 23:05:15 +00:00
|
|
|
|
|
|
|
Execute(The default tslint command should be correct):
|
2021-03-01 20:11:10 +00:00
|
|
|
AssertLinterCwd '%s:h'
|
|
|
|
AssertLinter 'tslint', ale#Escape('tslint') . ' --format json %t'
|
2017-08-30 20:27:28 +00:00
|
|
|
|
|
|
|
Execute(The rules directory option should be included if set):
|
|
|
|
let b:ale_typescript_tslint_rules_dir = '/foo/bar'
|
|
|
|
|
2018-07-15 17:24:53 +00:00
|
|
|
AssertLinter 'tslint',
|
2021-03-01 20:11:10 +00:00
|
|
|
\ ale#Escape('tslint') . ' --format json'
|
2017-08-30 20:27:28 +00:00
|
|
|
\ . ' -r ' . ale#Escape('/foo/bar')
|
2018-07-06 21:46:36 +00:00
|
|
|
\ . ' %t'
|
2018-03-18 16:48:28 +00:00
|
|
|
|
|
|
|
Execute(The executable should be configurable and escaped):
|
|
|
|
let b:ale_typescript_tslint_executable = 'foo bar'
|
|
|
|
|
2021-03-01 20:11:10 +00:00
|
|
|
AssertLinter 'foo bar', ale#Escape('foo bar') . ' --format json %t'
|