Skip to content

Commit

Permalink
chore: enable case-sensitive check on eslint (#19)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pantotone authored Jul 10, 2023
1 parent fd29424 commit 921fe06
Show file tree
Hide file tree
Showing 3 changed files with 1,270 additions and 13 deletions.
15 changes: 13 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime"
"plugin:react/jsx-runtime",
"plugin:import/typescript"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
Expand All @@ -16,7 +17,8 @@
},
"plugins": [
"@typescript-eslint",
"react"
"react",
"import"
],
"rules": {
"indent": [
Expand All @@ -37,6 +39,15 @@
"semi": [
"error",
"always"
],
"import/no-unresolved": [
2
]
},
"settings": {
"import/resolver": {
"typescript": true,
"node": true
}
}
}
Loading

0 comments on commit 921fe06

Please sign in to comment.