Skip to content

Commit 76c18fc

Browse files
committed
style: update eslint rules
1 parent c6bb63f commit 76c18fc

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.eslintrc.js

+3-5
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,13 @@ module.exports = {
1919
jest: true,
2020
},
2121
rules: {
22-
"@typescript-eslint/interface-name-prefix": "off",
23-
"@typescript-eslint/explicit-function-return-type": "off",
2422
"@typescript-eslint/no-explicit-any": "off",
2523
"@typescript-eslint/no-empty-function": "off",
2624
"@typescript-eslint/no-inferrable-types": "off",
2725
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
2826
"@typescript-eslint/explicit-module-boundary-types": "error",
29-
"simple-import-sort/imports": "error",
30-
"simple-import-sort/exports": "error",
31-
eqeqeq: ["error", "always"],
27+
eqeqeq: "error",
28+
"simple-import-sort/imports": "warn",
29+
"simple-import-sort/exports": "warn",
3230
},
3331
};

0 commit comments

Comments
 (0)