EMEugene Maltsevinroadtofaang.hashnode.dev·Jun 1, 2021 · 1 min readToday I learned how to fix no-unused-vars with typescriptI 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 } ], ...00