We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6bb63f commit 76c18fcCopy full SHA for 76c18fc
.eslintrc.js
@@ -19,15 +19,13 @@ module.exports = {
19
jest: true,
20
},
21
rules: {
22
- "@typescript-eslint/interface-name-prefix": "off",
23
- "@typescript-eslint/explicit-function-return-type": "off",
24
"@typescript-eslint/no-explicit-any": "off",
25
"@typescript-eslint/no-empty-function": "off",
26
"@typescript-eslint/no-inferrable-types": "off",
27
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
28
"@typescript-eslint/explicit-module-boundary-types": "error",
29
- "simple-import-sort/imports": "error",
30
- "simple-import-sort/exports": "error",
31
- eqeqeq: ["error", "always"],
+ eqeqeq: "error",
+ "simple-import-sort/imports": "warn",
+ "simple-import-sort/exports": "warn",
32
33
};
0 commit comments