don't tolerate missing semicolons
This commit is contained in:
parent
2b4225e156
commit
56358da460
1 changed files with 1 additions and 1 deletions
|
|
@ -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.).
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue