Keane Quibilan
Results
3
comments of
Keane Quibilan
@asadmansr +1 for this feature please
From my understanding, Automatic Semicolon Insertion shouldn't occur during `function`, `if`, or `for` statements. ``` for (true) { ``` should evaluate the same as ``` for (true) { ``` If...
Placing the brace on a new line is called [Allman Style](http://en.wikipedia.org/wiki/Indent_style#Allman_style) and is a valid style of indenting as long as you are consistent and avoid ASI issues like I...