Fix #491 - Use -x for shellcheck for checking files with sourced files

This commit is contained in:
w0rp 2017-10-26 00:48:51 +01:00
parent 2f5b94e07d
commit 5917de565d
2 changed files with 20 additions and 7 deletions

View File

@ -43,11 +43,12 @@ function! ale_linters#sh#shellcheck#GetCommand(buffer) abort
let l:exclude_option = ale#Var(a:buffer, 'sh_shellcheck_exclusions') 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_linters#sh#shellcheck#GetDialectArgument(a:buffer)
return ale_linters#sh#shellcheck#GetExecutable(a:buffer) return ale#path#BufferCdString(a:buffer)
\ . ale#Escape(ale_linters#sh#shellcheck#GetExecutable(a:buffer))
\ . (!empty(l:dialect) ? ' -s ' . l:dialect : '') \ . (!empty(l:dialect) ? ' -s ' . l:dialect : '')
\ . (!empty(l:options) ? ' ' . l:options : '') \ . (!empty(l:options) ? ' ' . l:options : '')
\ . (!empty(l:exclude_option) ? ' -e ' . l:exclude_option : '') \ . (!empty(l:exclude_option) ? ' -e ' . l:exclude_option : '')
\ . ' -f gcc -' \ . ' -x -f gcc -'
endfunction endfunction
call ale#linter#Define('sh', { call ale#linter#Define('sh', {

View File

@ -9,6 +9,12 @@ Before:
runtime ale_linters/sh/shellcheck.vim runtime ale_linters/sh/shellcheck.vim
call ale#test#SetDirectory('/testplugin/test/command_callback')
call ale#test#SetFilename('test.sh')
let b:prefix = 'cd ' . ale#Escape(ale#path#Winify(g:dir)) . ' && '
let b:suffix = ' -x -f gcc -'
After: After:
Restore Restore
@ -16,19 +22,22 @@ After:
unlet! b:ale_sh_shellcheck_executable unlet! b:ale_sh_shellcheck_executable
unlet! b:ale_sh_shellcheck_options unlet! b:ale_sh_shellcheck_options
unlet! b:is_bash unlet! b:is_bash
unlet! b:prefix
call ale#test#RestoreDirectory()
call ale#linter#Reset() call ale#linter#Reset()
Execute(The default shellcheck command should be correct): Execute(The default shellcheck command should be correct):
AssertEqual AssertEqual
\ 'shellcheck -f gcc -', \ b:prefix . ale#Escape('shellcheck') . b:suffix,
\ ale_linters#sh#shellcheck#GetCommand(bufnr('')) \ ale_linters#sh#shellcheck#GetCommand(bufnr(''))
Execute(The shellcheck command should accept options): Execute(The shellcheck command should accept options):
let b:ale_sh_shellcheck_options = '--foobar' let b:ale_sh_shellcheck_options = '--foobar'
AssertEqual AssertEqual
\ 'shellcheck --foobar -f gcc -', \ b:prefix . ale#Escape('shellcheck') . ' --foobar' . b:suffix,
\ ale_linters#sh#shellcheck#GetCommand(bufnr('')) \ ale_linters#sh#shellcheck#GetCommand(bufnr(''))
Execute(The shellcheck command should accept options and exclusions): Execute(The shellcheck command should accept options and exclusions):
@ -36,14 +45,14 @@ Execute(The shellcheck command should accept options and exclusions):
let b:ale_sh_shellcheck_exclusions = 'foo,bar' let b:ale_sh_shellcheck_exclusions = 'foo,bar'
AssertEqual AssertEqual
\ 'shellcheck --foobar -e foo,bar -f gcc -', \ b:prefix . ale#Escape('shellcheck') . ' --foobar -e foo,bar' . b:suffix,
\ ale_linters#sh#shellcheck#GetCommand(bufnr('')) \ ale_linters#sh#shellcheck#GetCommand(bufnr(''))
Execute(The shellcheck command should include the dialect): Execute(The shellcheck command should include the dialect):
let b:is_bash = 1 let b:is_bash = 1
AssertEqual AssertEqual
\ 'shellcheck -s bash -f gcc -', \ b:prefix . ale#Escape('shellcheck') . ' -s bash' . b:suffix,
\ ale_linters#sh#shellcheck#GetCommand(bufnr('')) \ ale_linters#sh#shellcheck#GetCommand(bufnr(''))
Execute(The shellcheck command should include the dialect before options and exclusions): Execute(The shellcheck command should include the dialect before options and exclusions):
@ -52,5 +61,8 @@ Execute(The shellcheck command should include the dialect before options and exc
let b:ale_sh_shellcheck_exclusions = 'foo,bar' let b:ale_sh_shellcheck_exclusions = 'foo,bar'
AssertEqual AssertEqual
\ 'shellcheck -s bash --foobar -e foo,bar -f gcc -', \ b:prefix
\ . ale#Escape('shellcheck')
\ . ' -s bash --foobar -e foo,bar'
\ . b:suffix,
\ ale_linters#sh#shellcheck#GetCommand(bufnr('')) \ ale_linters#sh#shellcheck#GetCommand(bufnr(''))