summaryrefslogtreecommitdiff
path: root/autoload/ale/handlers/shellcheck.vim
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2023-09-09 23:13:44 +0100
committerw0rp <devw0rp@gmail.com>2023-09-09 23:13:44 +0100
commit92267a14ba4ef4f96ea5822366f5b24231b1d9d7 (patch)
tree124789ac86fe2ec13fce7b96beec1961abaa8c0b /autoload/ale/handlers/shellcheck.vim
parent7b56ddc3f603ae05ae78c7a7032a8c77d6a7c8bd (diff)
downloadale-92267a14ba4ef4f96ea5822366f5b24231b1d9d7.zip
Remove backwards compatibility with ancient setting names
Diffstat (limited to 'autoload/ale/handlers/shellcheck.vim')
-rw-r--r--autoload/ale/handlers/shellcheck.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/autoload/ale/handlers/shellcheck.vim b/autoload/ale/handlers/shellcheck.vim
index 17de2912..fd540e8e 100644
--- a/autoload/ale/handlers/shellcheck.vim
+++ b/autoload/ale/handlers/shellcheck.vim
@@ -102,7 +102,7 @@ function! ale#handlers#shellcheck#DefineLinter(filetype) abort
" This global variable can be set with a string of comma-separated error
" codes to exclude from shellcheck. For example:
" 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_exclusions', '')
call ale#Set('sh_shellcheck_executable', 'shellcheck')
call ale#Set('sh_shellcheck_dialect', 'auto')
call ale#Set('sh_shellcheck_options', '')