Skip to content

Commit

Permalink
fix tsconfig for js files
Browse files Browse the repository at this point in the history
  • Loading branch information
Kluskey committed Oct 22, 2024
1 parent 726f0d0 commit 8ed4507
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions mirror-2/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
{
"extends": ["next/core-web-vitals", "next/typescript", "eslint:recommended"],
"extends": ["next/core-web-vitals", "next/typescript"],
"rules": {
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-unused-vars": "warn",
"no-unused-vars": "warn"
}
"@typescript-eslint/no-unused-vars": "off"
},

"overrides": [
{
"files": ["*.js", "*.jsx"],
"excludedFiles": [],
"extends": ["eslint:recommended"],
"rules": {
"no-unused-vars": "warn"
}
}
]
}

0 comments on commit 8ed4507

Please sign in to comment.