We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa0ef2f commit d0eeb07Copy full SHA for d0eeb07
.eslintrc.json
@@ -9,11 +9,16 @@
9
"prettier/prettier": ["error"],
10
"strict": "off",
11
"func-names": "off",
12
+ "import/no-dynamic-require": "off",
13
"no-console": "off",
14
+ "no-param-reassign": "off",
15
"no-plusplus": "off",
- "trailing-comma": "off",
16
+ "no-restricted-syntax": "off",
17
+ "object-shorthand": "off",
18
"operator-assignment": "off",
- "no-param-reassign": "off",
- "import/no-dynamic-require": "off"
19
+ "prefer-arrow-callback": "off",
20
+ "prefer-destructuring": "off",
21
+ "prefer-template": "off",
22
+ "trailing-comma": "off"
23
}
24
0 commit comments