diff options
author | w0rp <devw0rp@gmail.com> | 2016-10-08 23:55:58 +0100 |
---|---|---|
committer | w0rp <devw0rp@gmail.com> | 2016-10-08 23:55:58 +0100 |
commit | 1ea0eda36cac8fc39b2227c8b9c4ea75e48a4be3 (patch) | |
tree | 5f30a1496b16f4266b33303ba0d576e5a5c16306 /ale_linters/sh/shellcheck.vim | |
parent | 16a150b27785e18fc9f15d66f02578ac72ffa834 (diff) | |
download | ale-1ea0eda36cac8fc39b2227c8b9c4ea75e48a4be3.zip |
Correct all Vint warnings
Diffstat (limited to 'ale_linters/sh/shellcheck.vim')
-rw-r--r-- | ale_linters/sh/shellcheck.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/sh/shellcheck.vim b/ale_linters/sh/shellcheck.vim index 00499903..3bc9abe4 100644 --- a/ale_linters/sh/shellcheck.vim +++ b/ale_linters/sh/shellcheck.vim @@ -16,7 +16,7 @@ if !exists('g:ale_linters_sh_shellcheck_exclusions') let g:ale_linters_sh_shellcheck_exclusions = '' endif -if g:ale_linters_sh_shellcheck_exclusions != '' +if g:ale_linters_sh_shellcheck_exclusions !=# '' let s:exclude_option = '-e ' . g:ale_linters_sh_shellcheck_exclusions else let s:exclude_option = '' |