SublimeLinter: SublimeLinter: WARNING: deactivated, cannot locate ''

I’m getting these messages in the console for both jshint, csslint & coffeescript

SublimeLinter: WARNING: jshint deactivated, cannot locate 'jshint' SublimeLinter: WARNING: csslint deactivated, cannot locate 'csslint' SublimeLinter: WARNING: coffee deactivated, cannot locate 'coffee' Both are already installed globally & work properly from the command line, so how can I fix this?

About this issue

  • Original URL
  • State: closed
  • Created 10 years ago
  • Comments: 32 (9 by maintainers)

Most upvoted comments

Note, that you should keep all the OS keys in “paths” Sublime settings, even if they are empty. This config didn’t work for me:

"paths":
    {
        "linux": [
            "/home/gor/.nvm/versions/node/v6.2.0/bin/"
        ],
    },

but this works well:

    "paths":
    {
        "linux": [
            "/home/gor/.nvm/versions/node/v6.2.0/bin/"
        ],
        "osx": [],
        "windows": []
    },

I resolved this by putting it in SublimeLinter.sublime-settings as suggested by @ahmedelgabri.

...
"paths": {
    "linux": [],
    "osx": [
        "/Users/@f1lt3r/local/bin/"
    ],
    "windows": []
},
...