Skip to content

Commit

Permalink
remove ESLint rule covered in eslint:recommended
Browse files Browse the repository at this point in the history
  • Loading branch information
JLHwung committed Jul 27, 2023
1 parent 8e1c634 commit 719f643
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .eslintrc
Expand Up @@ -2,7 +2,7 @@
"parser": "@babel/eslint-parser",
"extends": ["eslint:recommended", "eslint-config-prettier"],
"parserOptions": {
"ecmaVersion": 2017,
"ecmaVersion": "latest",
"sourceType": "module"
},
"rules": {
Expand All @@ -12,7 +12,6 @@
"linebreak-style": ["error", "unix"],
"max-len": ["error", 110, 2],
"new-cap": "off",
"no-case-declarations": "error",
"no-cond-assign": "off",
"no-confusing-arrow": "error",
"no-console": "off",
Expand All @@ -28,8 +27,6 @@
"no-underscore-dangle": "off",
"no-unreachable": "off",
"no-use-before-define": "off",
"no-var": "error",
"prefer-const": "error",
"strict": "off",
"prettier/prettier": "error"
},
Expand Down

0 comments on commit 719f643

Please sign in to comment.