diff options
author | w0rp <devw0rp@gmail.com> | 2017-05-12 09:20:16 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2017-05-12 09:20:16 +0100 |
commit | 07b2542c0d6505f2a843e700d246367a522ecf64 (patch) | |
tree | 5a0ee411ef62a76d1cf04ccd1bdff4dd8e3e786a /ale_linters/typescript/tslint.vim | |
parent | fa54f7af97f2bb33eec1363b2262caa5a5b70d0b (diff) | |
download | ale-07b2542c0d6505f2a843e700d246367a522ecf64.zip |
#549 Temporarily revert shell escaping changes, just for Windows
Diffstat (limited to 'ale_linters/typescript/tslint.vim')
-rw-r--r-- | ale_linters/typescript/tslint.vim | 2 |
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) |