From ebd4092bee29b1723093dcdff65007837de5d539 Mon Sep 17 00:00:00 2001 From: Daniel Imms <2193314+Tyriar@users.noreply.github.com> Date: Wed, 23 Aug 2023 04:42:44 -0700 Subject: [PATCH] Ignore no-unused-vars in args --- .eslintrc.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 93b2a4ce..b748c5de 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -212,7 +212,10 @@ ], "no-trailing-spaces": "warn", "no-unsafe-finally": "warn", - "no-unused-vars": ["warn", { "vars": "all" }], + "no-unused-vars": ["warn", { + "vars": "all", + "args": "none" + }], "no-var": "warn", "one-var": [ "warn",