Skip to content

Commit

Permalink
Add missing ESLint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
lydell committed Apr 10, 2021
1 parent 885c123 commit 57120a2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .eslintrc.js
Expand Up @@ -4,7 +4,7 @@ module.exports = {
root: true,
extends: ["eslint:recommended"],
parserOptions: {
ecmaVersion: 2018
ecmaVersion: 2018,
},
env: {
es6: true,
Expand All @@ -14,6 +14,7 @@ module.exports = {
"arrow-body-style": "error",
curly: "error",
"dot-notation": "error",
"no-constant-condition": "error",
"no-shadow": "error",
"no-var": "error",
"prefer-const": "error",
Expand Down

0 comments on commit 57120a2

Please sign in to comment.