install.fairie/dotfiles/.vim/plugged/ale/test/test_backwards_compatibility.vader
Git E2E Dev Test Username e149692cc9 git subrepo clone https://github.com/dense-analysis/ale.git ./dotfiles/.vim/plugged/ale
subrepo:
  subdir:   "dotfiles/.vim/plugged/ale"
  merged:   "e4b205440"
upstream:
  origin:   "https://github.com/dense-analysis/ale.git"
  branch:   "master"
  commit:   "e4b205440"
git-subrepo:
  version:  "0.4.3"
  origin:   "???"
  commit:   "???"
2022-10-18 10:37:09 -04:00

19 lines
700 B
Text

" These tests, and the code that it covers, may be removed upon a major release.
After:
unlet! g:ale_linters_sh_shellcheck_exclusions
unlet! g:ale_sh_shellcheck_exclusions
unlet! g:ale_linters_sh_shell_default_shell
unlet! g:ale_sh_shell_default_shell
Execute(Old variable name for the 'shellcheck' linter should still work):
let g:ale_linters_sh_shellcheck_exclusions = 'SC1234'
runtime ale_linters/sh/shellcheck.vim
AssertEqual 'SC1234', g:ale_sh_shellcheck_exclusions
Execute (Old variable name for the 'shell' linter should still work):
let g:ale_linters_sh_shell_default_shell = 'woosh'
runtime ale_linters/sh/shell.vim
AssertEqual 'woosh', g:ale_sh_shell_default_shell