JSHint: disable missing comma warnings

How to disable missing comma warnings using JSHint in Sublime. I've tried several things on the internet to no avail.

+3


source to share


1 answer


asi

is an option in sublime linter that will suppress semicolon warnings if set to true.

See JSHint Info

For more information.



Ultimately you will want to add:

"asi": true,

+4


source







All Articles