Skip to content

Commit

Permalink
Check for unused parameters/variables
Browse files Browse the repository at this point in the history
Except for those prefixed with an underscore (_).
  • Loading branch information
caleb531 committed Jun 5, 2024
1 parent 6d3e829 commit 11f0d3d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,10 @@
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-this-alias": "off",
"@typescript-eslint/ban-types": "off",
"no-constant-condition": "off"
"no-constant-condition": "off",
"no-unused-vars": [
"error",
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }
]
}
}

0 comments on commit 11f0d3d

Please sign in to comment.