Skip to content

Commit

Permalink
configure jshint to allow ES6 Map constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
Rogier Schouten committed May 11, 2020
1 parent 89f96ac commit 0bf9fa3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .jshintrc
@@ -1,7 +1,7 @@
{
"node": true, // Enable globals available when code is running inside of the NodeJS runtime environment.
"browser": true, // Standard browser globals e.g. `window`, `document`.
"esnext": false, // Allow ES.next specific features such as `const` and `let`.
"esversion": 6, // Allow ES.next specific features such as `const` and `let`.
"bitwise": false, // Prohibit bitwise operators (&, |, ^, etc.).
"camelcase": false, // Permit only camelcase for `var` and `object indexes`.
"curly": false, // Require {} for every new block or scope.
Expand Down

0 comments on commit 0bf9fa3

Please sign in to comment.