Skip to content

Commit

Permalink
🚨 adjust JS Hint config to be consistent with Prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
annashamray committed Mar 31, 2022
1 parent 2534a40 commit a5dc8f5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .jshintrc
Original file line number Diff line number Diff line change
Expand Up @@ -38,11 +38,11 @@
"varstmt" : false, // true: Disallow any var statements. Only `let` and `const` are allowed.

// Relaxing
"asi" : false, // true: Tolerate Automatic Semicolon Insertion (no semicolons)
"asi" : true, // true: Tolerate Automatic Semicolon Insertion (no semicolons)
"boss" : false, // true: Tolerate assignments where comparisons would be expected
"debug" : false, // true: Allow debugger statements e.g. browser breakpoints.
"eqnull" : false, // true: Tolerate use of `== null`
"esversion" : 6, // {int} Specify the ECMAScript version to which the code must adhere.
"esversion" : 8, // {int} Specify the ECMAScript version to which the code must adhere.
"moz" : false, // true: Allow Mozilla specific syntax (extends and overrides esnext features)
// (ex: `for each`, multiple try/catch, function expression�)
"evil" : false, // true: Tolerate use of `eval` and `new Function()`
Expand Down

0 comments on commit a5dc8f5

Please sign in to comment.