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