Today I learned how to fix no-unused-vars with typescript
Jun 1, 2021 · 1 min read · I don't know why, but in my current project with TypeScript, there were two rules for unused vars. "no-unused-vars": [ "error", { "vars": "all", "args": "after-used", "ignoreRestSiblings": false } ], ...
Join discussion