Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d0eeb07

Browse files
committed
Ease up on some ESLint rules
1 parent aa0ef2f commit d0eeb07

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

.eslintrc.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,16 @@
99
"prettier/prettier": ["error"],
1010
"strict": "off",
1111
"func-names": "off",
12+
"import/no-dynamic-require": "off",
1213
"no-console": "off",
14+
"no-param-reassign": "off",
1315
"no-plusplus": "off",
14-
"trailing-comma": "off",
16+
"no-restricted-syntax": "off",
17+
"object-shorthand": "off",
1518
"operator-assignment": "off",
16-
"no-param-reassign": "off",
17-
"import/no-dynamic-require": "off"
19+
"prefer-arrow-callback": "off",
20+
"prefer-destructuring": "off",
21+
"prefer-template": "off",
22+
"trailing-comma": "off"
1823
}
1924
}

0 commit comments

Comments
 (0)