Skip to content

Commit

Permalink
Change any to warn
Browse files Browse the repository at this point in the history
  • Loading branch information
paustint committed Nov 26, 2023
1 parent 5d3bf6a commit 0868800
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,17 @@
{
"files": ["*.tsx"],
"rules": {
"@typescript-eslint/no-unused-vars": "off"
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-unused-vars": "warn"
}
},
{
"files": ["*.ts", "*.tsx"],
"extends": ["plugin:@nrwl/nx/typescript"],
"rules": {}
"rules": {
"@typescript-eslint/no-explicit-any": "warn",
"@typescript-eslint/no-unused-vars": "warn"
}
},
{
"files": ["*.js", "*.jsx"],
Expand Down

0 comments on commit 0868800

Please sign in to comment.