Skip to content

Commit fb0c4a7

Browse files
committed
chore: update ESLint rules to reduce distracting errors while typing
1 parent 23010d7 commit fb0c4a7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.eslintrc.cjs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,18 +27,18 @@ module.exports = {
2727
},
2828
},
2929
rules: {
30-
"prettier/prettier": "error",
30+
"prettier/prettier": "off",
3131
"react/react-in-jsx-scope": "off",
3232
"react/prop-types": "off",
3333
"react/no-unknown-property": "off",
3434
"react/display-name": "off",
35-
"@typescript-eslint/no-unused-vars": "off",
36-
"@typescript-eslint/no-explicit-any": "off",
35+
"@typescript-eslint/no-unused-vars": "warn",
36+
"@typescript-eslint/no-explicit-any": "warn",
3737
"@typescript-eslint/no-var-requires": "off",
3838
"@typescript-eslint/no-require-imports": "off",
3939
"@typescript-eslint/ban-ts-comment": "off",
4040
"@typescript-eslint/no-empty-object-type": "off",
41-
"no-console": "off",
41+
"no-console": "warn",
4242
"no-undef": "off",
4343
"no-useless-escape": "off",
4444
"no-prototype-builtins": "off",

0 commit comments

Comments
 (0)