Skip to content

Commit

Permalink
jshint: Use automatic semicolon insertion
Browse files Browse the repository at this point in the history
  • Loading branch information
structAnkit committed Feb 26, 2017
1 parent 70f4509 commit 64d5e39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@


// The Good Parts.
"asi" : false, // Tolerate Automatic Semicolon Insertion (no semicolons).
"asi" : true, // Tolerate Automatic Semicolon Insertion (no semicolons).
"laxbreak" : false, // Tolerate unsafe line breaks e.g. `return [\n] x` without semicolons.
"laxcomma" : true, // Tolerate unsafe commas e.g. `var foo\n,bar`
"bitwise" : true, // Prohibit bitwise operators (&, |, ^, etc.).
Expand Down

0 comments on commit 64d5e39

Please sign in to comment.