Make the tslint file match the style in the rest of the codebase
This commit is contained in:
parent
a4220b99a6
commit
3f5cb55e73
@ -52,13 +52,13 @@ endfunction
|
||||
|
||||
function! ale_linters#typescript#tslint#BuildLintCommand(buffer) abort
|
||||
let g:ale_typescript_tslint_config_path =
|
||||
\ empty(g:ale_typescript_tslint_config_path) ?
|
||||
\ ale#util#FindNearestFile(a:buffer, 'tslint.json')
|
||||
\ empty(g:ale_typescript_tslint_config_path)
|
||||
\ ? ale#util#FindNearestFile(a:buffer, 'tslint.json')
|
||||
\ : g:ale_typescript_tslint_config_path
|
||||
|
||||
let l:tslint_options =
|
||||
\ empty(g:ale_typescript_tslint_config_path) ?
|
||||
\ ''
|
||||
\ empty(g:ale_typescript_tslint_config_path)
|
||||
\ ? ''
|
||||
\ : '-c ' . fnameescape(g:ale_typescript_tslint_config_path)
|
||||
|
||||
return ale_linters#typescript#tslint#GetExecutable(a:buffer)
|
||||
|
Loading…
Reference in New Issue
Block a user