SublimeLinter-shellcheck
SublimeLinter-shellcheck copied to clipboard
This linter plugin for SublimeLinter provides an interface to shellcheck.
Shellcheck's supports the [`SCRIPTDIR` special value](https://www.shellcheck.net/wiki/Directive#source) in its `source` and `source-path` to find sourced files in shell scripts. this doesn't seem to work in SublimeLinter-shellcheck. As far as I can...
Many shell scripts use "source" to include other scripts. This option tells shellcheck to parse those external scripts, so that the remainder of the script can be properly linted.
If I set `PATH` environment variable in Shellcheck linter settings, it doesn’t read it correctly. For example, this configuration should find my custom `shellcheck` executable inside `~/.becky/bin` directory, but that...
See commit messages for more details.
via https://github.com/SublimeLinter/SublimeLinter/issues/1446 > Ok, so the primary thing that stops shellcheck from running on embedded code is that it can't determine what shell the script is for. So, the solution...