You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 doesn’t work. Same configuration for ESLint and Stylelint does work.
If I set path using global paths property, this does work but I would still like option of setting custom PATH only for Shellcheck and would expect it to work just like for other linters.
The text was updated successfully, but these errors were encountered:
That's a known limitation. The "env" mapping is used for the linter (child-) process not to enhance the (parent) lookup process (which would be the shared python plugin host process of Sublime Text).
An implementation must be provided in SublimeLinter core. There is a ticket open over there; shouldn't be too complicated to do actually.
That's a known limitation. The "env" mapping is used for the linter (child-) process not to enhance the (parent) lookup process (which would be the shared python plugin host process of Sublime Text).
An implementation must be provided in SublimeLinter core. There is a ticket open over there; shouldn't be too complicated to do actually.
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 doesn’t work. Same configuration for ESLint and Stylelint does work.If I set path using global
paths
property, this does work but I would still like option of setting customPATH
only for Shellcheck and would expect it to work just like for other linters.The text was updated successfully, but these errors were encountered: