summaryrefslogtreecommitdiff
path: root/doc/ale-sh.txt
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2017-04-11 09:26:58 +0100
committerGitHub <noreply@github.com>2017-04-11 09:26:58 +0100
commit8b890caa31411cd022156dca8e4c7f4c5fb65fc9 (patch)
tree8a58c4598c4c34891f2b8b35c8a121936c5ffdf6 /doc/ale-sh.txt
parent5aa52fc4502f96e333e125bcab58f1dfd4228643 (diff)
parent8e33abaeab5a7e796f46a8a5107eba18f7c20987 (diff)
downloadale-8b890caa31411cd022156dca8e4c7f4c5fb65fc9.zip
Merge pull request #458 from Szero/master
Added shellcheck executable and options variable
Diffstat (limited to 'doc/ale-sh.txt')
-rw-r--r--doc/ale-sh.txt23
1 files changed, 23 insertions, 0 deletions
diff --git a/doc/ale-sh.txt b/doc/ale-sh.txt
index aee13912..a7f7800e 100644
--- a/doc/ale-sh.txt
+++ b/doc/ale-sh.txt
@@ -19,12 +19,35 @@ g:ale_linters_sh_shell_default_shell *g:ale_linters_sh_shell_default_shell*
-------------------------------------------------------------------------------
shellcheck *ale-sh-shellcheck*
+g:ale_sh_shellcheck_executable *g:ale_sh_shellcheck_executable*
+
+ Type: |String|
+ Default: `'shellcheck'`
+
+ This variable sets executable used for shellcheck.
+
+
+g:ale_sh_shellcheck_options *g:ale_sh_shellcheck_options*
+
+ Type: |String|
+ Default: `''`
+
+ With this variable we are able to pass extra arguments for shellcheck
+ for shellcheck invocation.
+
+ For example, if we want shellcheck to follow external sources (`see SC1091`)
+ we can set the variable as such:
+
+ let g:ale_sh_shellcheck_options = '-x'
+
+
g:ale_linters_sh_shellcheck_exclusions *g:ale_linters_sh_shellcheck_exclusions*
Type: |String|
Default: `''`
Set this variable to exclude test(s) for shellcheck (-e/--exclude option).
+ To exclude more than one option, separate them with commas.
-------------------------------------------------------------------------------