From 210ba8109c9873866595f46f778f3d87b3a5ef2d Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Wed, 23 Aug 2023 04:34:55 -0700 Subject: [PATCH] Add no unused variables lint warning This shows a warning while compiling, so demo bundling will still happen but it will be rejected when a PR is made. --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index 9b675856..e1997f0c 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -212,6 +212,7 @@ ], "no-trailing-spaces": "warn", "no-unsafe-finally": "warn", + "no-unused-vars": ["warn", { "vars": "all" }], "no-var": "warn", "one-var": [ "warn",