2017-08-20 00:05:15 +01:00
|
|
|
Before:
|
2018-07-15 18:24:53 +01:00
|
|
|
call ale#assert#SetUpLinterTest('typescript', 'tslint')
|
2017-10-01 21:23:42 +01:00
|
|
|
call ale#test#SetFilename('test.ts')
|
2017-08-20 00:05:15 +01:00
|
|
|
|
|
|
|
After:
|
2018-07-15 18:24:53 +01:00
|
|
|
call ale#assert#TearDownLinterTest()
|
2017-08-20 00:05:15 +01:00
|
|
|
|
|
|
|
Execute(The default tslint command should be correct):
|
2018-07-15 18:24:53 +01:00
|
|
|
AssertLinter 'tslint',
|
2018-10-23 23:20:27 +09:00
|
|
|
\ ale#path#CdString(expand('%:p:h'))
|
2018-07-06 22:46:36 +01:00
|
|
|
\ . ale#Escape('tslint') . ' --format json %t'
|
2017-08-30 21:27:28 +01:00
|
|
|
|
|
|
|
Execute(The rules directory option should be included if set):
|
|
|
|
let b:ale_typescript_tslint_rules_dir = '/foo/bar'
|
|
|
|
|
2018-07-15 18:24:53 +01:00
|
|
|
AssertLinter 'tslint',
|
2018-10-23 23:20:27 +09:00
|
|
|
\ ale#path#CdString(expand('%:p:h'))
|
2018-03-18 16:48:28 +00:00
|
|
|
\ . ale#Escape('tslint') . ' --format json'
|
2017-08-30 21:27:28 +01:00
|
|
|
\ . ' -r ' . ale#Escape('/foo/bar')
|
2018-07-06 22:46:36 +01: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'
|
|
|
|
|
2018-07-15 18:24:53 +01:00
|
|
|
AssertLinter 'foo bar',
|
2018-10-23 23:20:27 +09:00
|
|
|
\ ale#path#CdString(expand('%:p:h'))
|
2018-07-06 22:46:36 +01:00
|
|
|
\ . ale#Escape('foo bar') . ' --format json %t'
|