paul
paul

Reputation: 13481

JSLint suppress warning on IntellijJ

I´m using intellij 14 and I just active the JSLint and JSHint, and it´s pretty useful, burt I dont like the code style of declare variables like var a,b,c instead var a; var b; and var c; So now all my code is full of warnings saying 'combine this with the previous var statement'. Can anybody tell me where can I suppress this warning?. I cannot find it.

Regards.

Upvotes: 0

Views: 136

Answers (1)

CodingIntrigue
CodingIntrigue

Reputation: 78595

Set to Tolerate: many var statements in your JSLint settings:

enter image description here

Upvotes: 1

Related Questions