don't tolerate missing semicolons

This commit is contained in:
Josh Wolfe 2014-03-15 14:26:54 -07:00
parent 2b4225e156
commit 56358da460

View file

@ -38,7 +38,7 @@
// The Good Parts. // The Good Parts.
"asi" : true, // Tolerate Automatic Semicolon Insertion (no semicolons). "asi" : false, // Tolerate Automatic Semicolon Insertion (no semicolons).
"laxbreak" : false, // Tolerate unsafe line breaks e.g. `return [\n] x` without semicolons. "laxbreak" : false, // Tolerate unsafe line breaks e.g. `return [\n] x` without semicolons.
"laxcomma" : true, "laxcomma" : true,
"bitwise" : false, // Prohibit bitwise operators (&, |, ^, etc.). "bitwise" : false, // Prohibit bitwise operators (&, |, ^, etc.).