Skip to content

Commit

Permalink
added file specific rule in eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
overthemike committed Nov 5, 2024
1 parent f310216 commit 3773d8e
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@
"warn",
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }
],
"@typescript-eslint/no-unused-expressions": "off",
"@typescript-eslint/no-use-before-define": "off",
"@typescript-eslint/no-empty-function": "off",
"@typescript-eslint/no-explicit-any": "off",
Expand Down Expand Up @@ -121,6 +120,15 @@
"rules": {
"@typescript-eslint/no-require-imports": "off"
}
},
{
"files": [
"src/vanilla/utils/proxyMap.ts",
"src/vanilla/utils/proxySet.ts"
],
"rules": {
"@typescript-eslint/no-unused-expressions": "off"
}
}
]
}

0 comments on commit 3773d8e

Please sign in to comment.