diff options
author | w0rp <devw0rp@gmail.com> | 2017-04-16 01:24:08 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-04-16 01:24:08 +0100 |
commit | e97dada261c4a69f43c5a6c34d349ad6246fe34c (patch) | |
tree | bbaf8aec8ec0474251bdd3e183eb93d06d80c792 /ale_linters/typescript | |
parent | e80116cee03af66bb229c3f570f0b2f244f0a197 (diff) | |
download | ale-e97dada261c4a69f43c5a6c34d349ad6246fe34c.zip |
#427 Implement buffer variable overrides for all linter options
Diffstat (limited to 'ale_linters/typescript')
-rw-r--r-- | ale_linters/typescript/tslint.vim | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/ale_linters/typescript/tslint.vim b/ale_linters/typescript/tslint.vim index 38d55dc9..a77011e5 100644 --- a/ale_linters/typescript/tslint.vim +++ b/ale_linters/typescript/tslint.vim @@ -11,7 +11,7 @@ function! ale_linters#typescript#tslint#GetExecutable(buffer) abort return ale#util#ResolveLocalPath( \ a:buffer, \ 'node_modules/.bin/tslint', - \ g:ale_typescript_tslint_executable + \ ale#Var(a:buffer, 'typescript_tslint_executable') \) endfunction @@ -50,18 +50,18 @@ function! ale_linters#typescript#tslint#Handle(buffer, lines) abort 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') - \ : g:ale_typescript_tslint_config_path + let l:tslint_config_path = ale#util#ResolveLocalPath( + \ a:buffer, + \ 'tslint.json', + \ ale#Var(a:buffer, 'typescript_tslint_config_path') + \) - let l:tslint_options = - \ empty(g:ale_typescript_tslint_config_path) - \ ? '' - \ : '-c ' . fnameescape(g:ale_typescript_tslint_config_path) + let l:tslint_config_option = !empty(l:tslint_config_path) + \ ? '-c ' . fnameescape(l:tslint_config_path) + \ : '' return ale_linters#typescript#tslint#GetExecutable(a:buffer) - \ . ' ' . l:tslint_options + \ . ' ' . l:tslint_config_option \ . ' %t' endfunction |