Skip to content

Commit

Permalink
chore: update eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
grikomsn committed Feb 6, 2024
1 parent 732ba63 commit e8bec1d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ const eslintConfig = {
],
plugins: ["simple-import-sort"],
rules: {
"@next/next/no-img-element": "off",
"simple-import-sort/exports": "warn",
"simple-import-sort/imports": "warn",
"@next/next/no-img-element": ["off"],
"simple-import-sort/exports": ["warn"],
"simple-import-sort/imports": ["warn"],
},
ignorePatterns: ["node_modules/", ".next/", "out/", "src/chains/*"],
overrides: [
Expand All @@ -35,9 +35,11 @@ const eslintConfig = {
extendDefaults: true,
},
],
"@typescript-eslint/no-explicit-any": ["warn"],
},
},
],
root: true,
};

module.exports = eslintConfig;

0 comments on commit e8bec1d

Please sign in to comment.