Skip to content

Commit

Permalink
fix: add missing eslint rule
Browse files Browse the repository at this point in the history
  • Loading branch information
Loïc Mangeonjean committed Feb 13, 2024
1 parent 9ee40b1 commit 18ab9fd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
8 changes: 7 additions & 1 deletion .eslintrc.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,11 @@ module.exports = {
extends: [
'@codingame/eslint-config',
'@codingame/eslint-config-react'
]
],
rules: {
'import/extensions': [
'error',
'ignorePackages'
]
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"sourceMap": true,
"target": "ES2022"
},
"include": ["src"],
"include": ["src", ".eslintrc.cjs"],
"exclude": [
"dist",
"node_modules"
Expand Down

0 comments on commit 18ab9fd

Please sign in to comment.