Skip to content

Commit

Permalink
tweak eslint config
Browse files Browse the repository at this point in the history
  • Loading branch information
bmesuere committed Nov 28, 2024
1 parent f5309d1 commit 63e397a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@ export default [
...tseslint.configs.recommended,
{
rules: {
"@typescript-eslint/no-unused-vars": ["error", { argsIgnorePattern: "^_" }],
"@typescript-eslint/no-unused-vars": [
"error",
{ argsIgnorePattern: "^_", caughtErrors: "none" }
],
"@typescript-eslint/ban-ts-comment": "off",
},
ignores: ["dist/"]
Expand Down

0 comments on commit 63e397a

Please sign in to comment.