summaryrefslogtreecommitdiff
path: root/ale_linters/typescript/tslint.vim
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/typescript/tslint.vim')
-rw-r--r--ale_linters/typescript/tslint.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/typescript/tslint.vim b/ale_linters/typescript/tslint.vim
index 8ba99cc4..c382ed21 100644
--- a/ale_linters/typescript/tslint.vim
+++ b/ale_linters/typescript/tslint.vim
@@ -55,7 +55,7 @@ function! ale_linters#typescript#tslint#BuildLintCommand(buffer) abort
\)
let l:tslint_config_option = !empty(l:tslint_config_path)
- \ ? '-c ' . shellescape(l:tslint_config_path)
+ \ ? '-c ' . ale#Escape(l:tslint_config_path)
\ : ''
return ale_linters#typescript#tslint#GetExecutable(a:buffer)