Skip to content

Commit

Permalink
fix(lint): throw on unused variables (#21)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangibbsnc authored Feb 1, 2025
1 parent 00c6abe commit 186fdd5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion cfg/biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@
"noUnusedFunctionParameters": "error",
// noUnusedImports + noUnusedVariables can replace eslint-plugin-unused-vars!
"noUnusedImports": "error",
"noUnusedVariables": "error",
"noUnusedVariables": {
"fix": "none",
"level": "error"
},
"useArrayLiterals": "error"
},
"style": {
Expand Down

0 comments on commit 186fdd5

Please sign in to comment.