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 935513c commit ea971a3Copy full SHA for ea971a3
packages/eslint-config-custom/react.js
@@ -26,6 +26,11 @@ module.exports = {
26
rules: {
27
'no-console': 2,
28
eqeqeq: 2,
29
+ "no-unused-vars": 2,
30
+ "no-var": 2,
31
+ "prefer-const": 2,
32
+ "no-eval": 2,
33
+ "no-magic-numbers": 2,
34
"unicorn/filename-case": [2, { case: "kebabCase" }],
35
"react/jsx-filename-extension": [2, { extensions: [".tsx"] }],
36
// Best practices for writing efficient JavaScript code
0 commit comments