I'm using SublimeLintern package, but I'm experiencing some issues. I would like to toggle that "laxcomma" warning that appears each time I save my files: I do prefer putting my commas at the beginning of each row
{
"item1": val1
,"item2": val2
,"item3": val3
}
Hence, I tried to look for some piece of documentation that explained how to enable or disable each check. I bumped into this that should explain what I need.
So, my SublimeLinter.sublime-settings
is now like this:
{
"jshint_options": {
"laxcomma": false
}
}
but it doesn't seem to be working. I still see that bothering warning! What's wrong with my settings?
/Packages/SublimeLinter/sublimelinter/modules/libs/jshint/jshint.js
? You might want to setlaxbreak
andlaxcomma
tofalse
. – Gearardsublimelinter.sublime-settings
file and tell me if it works properly? In case it works: may you paste a gist here? Thanks – Parton