We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14ad03e commit 815cde2Copy full SHA for 815cde2
.eslintrc
@@ -5,7 +5,12 @@
5
"rules": {
6
"import/no-extraneous-dependencies": ["error", { "devDependencies": true }],
7
"no-unused-vars": ["warn"],
8
- "prettier/prettier": ["error"]
+ "prettier/prettier": ["error"],
9
+ "no-param-reassign": ["warn"],
10
+ "no-shadow": ["warn"],
11
+ "no-case-declarations": ["warn"],
12
+ "no-use-before-define": ["warn"],
13
+ "no-restricted-globals": ["warn"]
14
},
15
"env": {
16
"browser": true,
0 commit comments