summaryrefslogtreecommitdiff
path: root/ale_linters/sh
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2016-10-08 23:55:58 +0100
committerw0rp <devw0rp@gmail.com>2016-10-08 23:55:58 +0100
commit1ea0eda36cac8fc39b2227c8b9c4ea75e48a4be3 (patch)
tree5f30a1496b16f4266b33303ba0d576e5a5c16306 /ale_linters/sh
parent16a150b27785e18fc9f15d66f02578ac72ffa834 (diff)
downloadale-1ea0eda36cac8fc39b2227c8b9c4ea75e48a4be3.zip
Correct all Vint warnings
Diffstat (limited to 'ale_linters/sh')
-rw-r--r--ale_linters/sh/shellcheck.vim2
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 = ''