mirror of https://github.com/dense-analysis/ale
Support ale_sh_shellcheck_dialect to set dialect
As discussed in w0rp/ale#1051, there are cases where it would be useful to be able to specify the dialect explicitly. This commit allows users to do so using the ale_sh_shellcheck_dialect variable. Fixes: w0rp/ale#1051 Signed-off-by: Kevin Locke <kevin@kevinlocke.name>
This commit is contained in:
parent
7a48750610
commit
a0d4eb3699
|
@ -8,6 +8,7 @@
|
|||
" let g:ale_sh_shellcheck_exclusions = 'SC2002,SC2004'
|
||||
call ale#Set('sh_shellcheck_exclusions', get(g:, 'ale_linters_sh_shellcheck_exclusions', ''))
|
||||
call ale#Set('sh_shellcheck_executable', 'shellcheck')
|
||||
call ale#Set('sh_shellcheck_dialect', 'auto')
|
||||
call ale#Set('sh_shellcheck_options', '')
|
||||
|
||||
function! ale_linters#sh#shellcheck#GetExecutable(buffer) abort
|
||||
|
@ -53,9 +54,13 @@ function! ale_linters#sh#shellcheck#GetCommand(buffer, version_output) abort
|
|||
|
||||
let l:options = ale#Var(a:buffer, 'sh_shellcheck_options')
|
||||
let l:exclude_option = ale#Var(a:buffer, 'sh_shellcheck_exclusions')
|
||||
let l:dialect = ale_linters#sh#shellcheck#GetDialectArgument(a:buffer)
|
||||
let l:dialect = ale#Var(a:buffer, 'sh_shellcheck_dialect')
|
||||
let l:external_option = ale#semver#GTE(l:version, [0, 4, 0]) ? ' -x' : ''
|
||||
|
||||
if l:dialect is# 'auto'
|
||||
let l:dialect = ale_linters#sh#shellcheck#GetDialectArgument(a:buffer)
|
||||
endif
|
||||
|
||||
return ale#path#BufferCdString(a:buffer)
|
||||
\ . ale#Escape(l:executable)
|
||||
\ . (!empty(l:dialect) ? ' -s ' . l:dialect : '')
|
||||
|
|
|
@ -61,6 +61,18 @@ g:ale_sh_shellcheck_options *g:ale_sh_shellcheck_options*
|
|||
let g:ale_sh_shellcheck_options = '-x'
|
||||
<
|
||||
|
||||
|
||||
g:ale_sh_shellcheck_dialect *g:ale_sh_shellcheck_dialect*
|
||||
*b:ale_sh_shellcheck_dialect*
|
||||
Type: |String|
|
||||
Default: `'auto'`
|
||||
|
||||
This variable specifies the shellcheck dialect (`-s` option). The value
|
||||
`'auto'` causes ALE to detect the dialect automatically, based on the shebang
|
||||
line (if present) or the value of `b:is_bash`, `b:is_sh`, or `b:is_kornshell`
|
||||
(set and used by |sh.vim|).
|
||||
|
||||
|
||||
g:ale_sh_shellcheck_exclusions *g:ale_sh_shellcheck_exclusions*
|
||||
*b:ale_sh_shellcheck_exclusions*
|
||||
Type: |String|
|
||||
|
|
|
@ -33,6 +33,18 @@ Execute(The shellcheck command should include the dialect):
|
|||
AssertLinter 'shellcheck',
|
||||
\ b:prefix . ale#Escape('shellcheck') . ' -s bash' . b:suffix
|
||||
|
||||
Execute(The shellcheck command should use ale_sh_shellcheck_dialect):
|
||||
let b:ale_sh_shellcheck_dialect = 'ksh93'
|
||||
|
||||
AssertLinter 'shellcheck',
|
||||
\ b:prefix . ale#Escape('shellcheck') . ' -s ksh93' . b:suffix
|
||||
|
||||
Execute(The shellcheck command should allow unspecified dialect):
|
||||
let b:ale_sh_shellcheck_dialect = ''
|
||||
|
||||
AssertLinter 'shellcheck',
|
||||
\ b:prefix . ale#Escape('shellcheck') . b:suffix
|
||||
|
||||
Execute(The shellcheck command should include the dialect before options and exclusions):
|
||||
let b:is_bash = 1
|
||||
let b:ale_sh_shellcheck_options = '--foobar'
|
||||
|
|
Loading…
Reference in New Issue