Sublime Forum

Disabling JSHint is not working

#1

In Preferences->Settings (User), I have:

{
    ....
    "linters": {
        "jshint": {
            "disable": true,
            "args": [],
            "excludes": [],
            "ignore_match": ["Missing semicolon"]
        }
    }
}

I save, then restart sublime, however jshint is still working:

I tried: “disable”: true, and “@disable”: true, but neither work.

I also tried removing the other options there, so just:

{
    ....
    "linters": {
        "jshint": {
            "disable": true
        }
    }
}

No difference.

What is wrong? (Using 3176, Windows 7 x64)

Thanks
Rael

0 Likes

#2

This did work when I put the options in the SublimeLinter Settings.

It was not working in the main User settings.

0 Likes