Reputation: 13481
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
Reputation: 78595
Set to Tolerate: many var statements
in your JSLint settings:
Upvotes: 1