Skip to content

Commit

Permalink
Update eslint.config.mjs
Browse files Browse the repository at this point in the history
  • Loading branch information
brianCollinsUI committed Jan 10, 2025
1 parent b82de4a commit 61be881
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,6 @@ export default [
react: {
"version": "detect",
},
// "import/resolver": {
// "webpack": {
// "config": "config/webpack/webpack.production.config.js",
// },
// },
},
languageOptions: {
parser: typescriptEslintParser,
Expand Down Expand Up @@ -160,5 +155,14 @@ export default [
"semi": 0
},
},
{
"files": [ "**/*.{ts,tsx}" ],
"rules": {
"react/require-default-props": "off",
"react/prop-types": "off",
"no-shadow": "off",
"@typescript-eslint/no-shadow": "error"
}
}
]

0 comments on commit 61be881

Please sign in to comment.