Tagged Questions
0
votes
1answer
91 views
How to tell JSLint not to ask for { on single line if statements
Right now I have the following code:
if (c > last) break;
And jslint complains with
jslint:crud.js:69:19:Expected '{' and instead saw 'break'.
There are several ways to overcome it:
if (c ...