Tagged Questions
0
votes
1answer
92 views
Put semicolons in asi mode before brackets
I'm linting my javascript with JSHint, and have this option enabled
"asi": true,
"white": true
to avoid semicolons in my code.
But I have to begin my new line with a bracket, so I have to put a ...
0
votes
1answer
97 views
jshint: funky code vs semicolons; how to silence all of jshint's complaints about semicolons here?
Now, I'm not a fan of ASI. But given that this is perfectly legit javascript, where exactly is it here that jshint (repeatedly, 8 times over) is expecting to find a semicolon?
...