Skip to content

Commit

Permalink
Fix build issues
Browse files Browse the repository at this point in the history
Squash and merge the following commits into develop:
* fix: fix type issue
* fix: add parserOptions to .eslintrc.json
* fix: move styling files out of pages directory
* feat(deps): add eslint packages
* chore(eslint): update ESLint configuration
* fix(eslint): resolve build errors
  • Loading branch information
mateusriff authored Feb 3, 2024
1 parent db7926c commit 21b5cdd
Show file tree
Hide file tree
Showing 19 changed files with 476 additions and 83 deletions.
7 changes: 5 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
{
"plugins": ["@typescript-eslint"],
"extends": [
"next/core-web-vitals",
"plugin:@typescript-eslint/recommended",
"prettier"
],
"rules": {
"prefer-const": "error",
"@typescript-eslint/no-explicit-any": "error"
"@typescript-eslint/no-explicit-any": "off"
},
"plugins": ["@typescript-eslint"],
"parserOptions": {
"project": "./tsconfig.json"
}
}
Loading

0 comments on commit 21b5cdd

Please sign in to comment.