summaryrefslogtreecommitdiff
path: root/ale_linters/sh
AgeCommit message (Collapse)Author
2020-08-17Merge pull request #2906 from ↵w0rp
elebow/shelldetect-fall-back-to-filetype-if-no-hashbang ShellDetect falls back to filetype if no hashbang (fixes #2886)
2020-07-21Merge pull request #3070 from hsanson/2732-add-bashate-supportw0rp
Fix 2732 - Add bashate support
2020-05-08Use a function to define shellcheck linters and vars needed, fixes testsIan2020
2020-04-28Moved common code to ale handlers, updated bats docIan2020
2020-03-23Fix 2732 - Add bashate supportHoracio Sanson
2019-11-23shell: Make description more accurateEddie Lebow
The shell linter does more than just bash.
2019-08-31linter/sh: Improve parsing of error messages in different localesJeffrey Lau
Fixes #2687
2019-04-18Add g:ale_sh_shellcheck_change_directoryFletcher Nichol
2019-04-07#2132 - Replace command_chain and chain_with with ale#command#Runw0rp
2019-02-22#2132 - Replace all uses of foo_callback with foow0rp
2019-02-10Support ale_sh_shellcheck_dialect to set dialectKevin Locke
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>
2018-08-02Simplify the code for most linters and tests with closuresw0rp
2018-07-04Make the language option for LSP linters optionalw0rp
2018-06-25sh: add bash-language-server linterChristian Höltje
2017-11-15#852 Capture error codes for shellcheckw0rp
2017-11-13Fix #1122 - Handle notes for shellcheck errors again, and use type 'I' for notesw0rp
2017-11-09Simplfy semver handling and share the semver version cache across everythingw0rp
2017-11-03Fix #491 - Only set -x for shellcheck for versions which support the optionw0rp
2017-10-26Fix #1051 - Support ash and dash for shellcheck and the sh linterw0rp
2017-10-26Fix #491 - Use -x for shellcheck for checking files with sourced filesw0rp
2017-10-03Fix typosrhysd
2017-09-22Move dialect setting before user options (shellcheck)Tim Byrne
2017-08-28#869 - Detect the shell dialect from the hashbang for shellcheckw0rp
2017-08-08Ban use of ==# or ==? in the codebase, and prefer is# or is? insteadw0rp
2017-05-01shell: Don't default to fishAdriaan Zonnenberg
2017-04-30Rename g:ale_linters_sh_* to g:ale_sh_*Adriaan Zonnenberg
2017-04-28Use ale#Var in linters that didn't use it yetAdriaan Zonnenberg
2017-04-18Add a function for getting matches, and use it to simplify a lot of codew0rp
2017-04-16#427 Implement buffer variable overrides for all linter optionsw0rp
2017-04-11#392 Report errors inside of headers, in a very basic wayw0rp
2017-04-09added shellcheck executable and options variableSzero
updated docs
2017-04-03#447 Pass a temporary file to the shell linter insteadw0rp
2017-04-03#447 Support zsh in the shell linterw0rp
2017-03-30Remove 'col' from linters where it is hardcoded to 1 (#434)Adriaan Zonnenberg
* Remove 'col' from linters where it is hardcoded to 1 When 'col' is 1, the first column will get highlighted for no reason. It should be 0 (which is the default). In the scalac linter there was also a check about the outcome of `stridx`. It would set l:col to 0 if it was -1, and then it uses `'col': l:col + 1` to convert the outcome of `stridx` to the actual column number. This will make 'col' equals 1 when there is no match. We can remove the check because `-1 + 1 = 0`. * Remove outdated comments about vcol vcol was added as a default, and the loclists that follow these comments do not contain 'vcol' anymore
2017-02-26Copy all loclist items returned from handlers, and set up defaults for ↵w0rp
convenience
2017-01-22Add a script for custom checks to enforce using the abort flag for functions ↵w0rp
and trailing whitespace, and fix existing issues.
2016-10-27Choose shell dialect based on vim syntaxKeith Smiley
Shellcheck is smart enough to check the shebang in a given file to determine which dialect to use. Unfortunately this doesn't work for files without shebangs, even if it might be apparent what dialect should be used, such as "bashrc" or "foo.bash". Luckily `filetype.vim` defines specific vars based on which shell dialect is being used based on a huge list of conditions. With this change we take those into account for all the types shellcheck supports, otherwise we fallback to letting it try and decide.
2016-10-21Add support for dot-seperate linters, improve linter testsBjorn Neergaard
This PR first and formost implements support for dot-seperate filetypes, a very trivial change. This closes #132 But more importantly, this PR vastly improves the test quality for `ale#linter#Get`. It enables us to reset the state of ale's internal linter cache, to facilitate better testing, as well as making use of mocked linters instead of depending on linters on disk (which may change). In addition, a dummy linter is defined to test the autoloading behavior. Header guards were removed from all linters as: * A: ale won't try and load linters if they already exist in memory * B: we can't reset state for testing if they can't be loaded again
2016-10-11Use explicit scope in all ale_lintersBjorn Neergaard
vint -s is now clean
2016-10-10First pass at optimizing ale to autoload (#80)Bjorn Neergaard
* First pass at optimizing ale to autoload First off, the structure/function names should be revised a bit, but I will wait for @w0rp's input before unifying the naming style. Second off, the docs probably need some more work, I just did some simple find-and-replace work. With that said, this pull brings major performance gains for ale. On my slowest system, fully loading ale and all its code takes around 150ms. I have moved all of ale's autoload-able code to autoload/, and in addition, implemented lazy-loading of linters. This brings load time on that same system down to 5ms. The only downside of lazy loading is that `g:ale_linters` cannot be changed at runtime; however, it also speeds up performance at runtime by simplfying the logic greatly. Please let me know what you think! Closes #59 * Address Travis/Vint errors For some reason, ale isn't running vint for me... * Incorporate feedback, make fixes Lazy-loading logic is much improved. * Add header comments; remove incorrect workaround * Remove unneeded plugin guards * Fix lazy-loading linter logic Set the wrong variable.... * Fix capitialization
2016-10-09Merge branch 'shell-detection'w0rp
2016-10-09Modify shell's pattern to handle locals other than english, fixes #69Kabbaj Amine
2016-10-09#69 Change the default shell for shell lintingw0rp
2016-10-09Handle arguments to shells in shebang lines too.w0rp
2016-10-09#69 Improve shell detectionw0rp
2016-10-08Correct all Vint warningsw0rp
2016-10-04Add comment headers to ale_lintersPrashanth Chandra
2016-10-03Remove a test echo line.w0rp
2016-10-03Add support for shellcheck linting.w0rp
2016-09-15Add support for Bash and other shells. Add support for reading from stderr, ↵w0rp
and for generating the executable from functions. Both were needed to support shell linting.