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 a linter is not installed and you don't run with --install or --autorun, then we don't install the linter and the run will fail with an unhelpful error. For instance, with just jsonlint enabled but not installed:
> inline-plz --dryrun
Invalid message: The system cannot find the path specified.
If we add a "detect installation location" field to each linter to see if they're installed, we can check for file or directory presence and throw an exception instead of attempting to subprocess run a non-existent executable that gives better clarity on why it's failing.
The text was updated successfully, but these errors were encountered:
If a linter is not installed and you don't run with
--install
or--autorun
, then we don't install the linter and the run will fail with an unhelpful error. For instance, with justjsonlint
enabled but not installed:If we add a "detect installation location" field to each linter to see if they're installed, we can check for file or directory presence and throw an exception instead of attempting to subprocess run a non-existent executable that gives better clarity on why it's failing.
The text was updated successfully, but these errors were encountered: