aboutsummaryrefslogtreecommitdiff
path: root/vim/after/ftplugin/sh/lint.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/after/ftplugin/sh/lint.vim')
-rw-r--r--vim/after/ftplugin/sh/lint.vim6
1 files changed, 3 insertions, 3 deletions
diff --git a/vim/after/ftplugin/sh/lint.vim b/vim/after/ftplugin/sh/lint.vim
index 54f86bea..b6377966 100644
--- a/vim/after/ftplugin/sh/lint.vim
+++ b/vim/after/ftplugin/sh/lint.vim
@@ -9,11 +9,11 @@ let b:undo_ftplugin = b:undo_ftplugin
" Choose linter based on shell family
if exists('b:is_bash')
- let b:sh_lint = 'write !shellcheck -s bash -'
+ let b:sh_lint = 'write !shellcheck -e SC1090 -s bash -'
elseif exists('b:is_kornshell')
- let b:sh_lint = 'write !shellcheck -s ksh -'
+ let b:sh_lint = 'write !shellcheck -e SC1090 -s ksh -'
else
- let b:sh_lint = 'write !shellcheck -s sh -'
+ let b:sh_lint = 'write !shellcheck -e SC1090 -s sh -'
endif
let b:undo_ftplugin = b:undo_ftplugin
\ . '|unlet b:sh_lint'