SublimeLinter 3 not working

I'm having problems with SublimeLinter3. I recently installed JSHint and Sublime Linter 3 with my package management, and when I manually use JSHint from the command palette, it works fine. However, my SublimeLinter does nothing. Doesn't it provide instant visual feedback when I print errors and save the file? Any help would be greatly appreciated!

+6
source share
2 answers

Make sure you install the SublimeLinter-jshint , not the one just named JSHint , as it does not work with SublimeLinter. Also, make sure you read the SublimeLinter documentation completely so that everything is set up correctly.

+5
source

Have you read the installation documentation ? You must install jshint using Node.js

If you have completed all the steps, see Tools> SublimeLinter> Lint Mode. "Background" should be selected if you want to check the syntax as you type.

You can also try to make some mistakes and press CTRL + K and then A to show all errors. If you see errors that mean jshint is installed and working correctly. If not, you will have a problem with your installation.

0
source

All Articles