You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To avoid issues like #10041, I propose removing the eslint option that exempts unused function arguments from the no-unused-vars rule. There are currently 426 violations in the codebase, with around 60 of them in lib.
If we want to retain certain arguments for clarity, we can just wrap them in comment tags.
The text was updated successfully, but these errors were encountered:
I'd be happy to go through and make the changes to get rid of any unused arguments if we exempt them from the no-unused-vars rule.
Furthermore, why do we even allow unused variables? Isn't that just wasting size and run time resources?
To avoid issues like #10041, I propose removing the eslint option that exempts unused function arguments from the
no-unused-vars
rule. There are currently 426 violations in the codebase, with around 60 of them inlib
.If we want to retain certain arguments for clarity, we can just wrap them in comment tags.
The text was updated successfully, but these errors were encountered: