Skip to content

Commit

Permalink
style: update eslint rules
Browse files Browse the repository at this point in the history
  • Loading branch information
Char2sGu committed May 19, 2022
1 parent c6bb63f commit 76c18fc
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,13 @@ module.exports = {
jest: true,
},
rules: {
"@typescript-eslint/interface-name-prefix": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-inferrable-types": "off",
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
"@typescript-eslint/explicit-module-boundary-types": "error",
"simple-import-sort/imports": "error",
"simple-import-sort/exports": "error",
eqeqeq: ["error", "always"],
eqeqeq: "error",
"simple-import-sort/imports": "warn",
"simple-import-sort/exports": "warn",
},
};

0 comments on commit 76c18fc

Please sign in to comment.