From 26ffc5d4aeba072c047a9ee5f59c338a5de8c85c Mon Sep 17 00:00:00 2001 From: Matthias Konitzny <konitzny@ibr.cs.tu-bs.de> Date: Tue, 16 Nov 2021 09:45:48 +0000 Subject: [PATCH] Update .eslintrc.json to not throw errors on unused function arguments. --- .eslintrc.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index 812cc42..c902b95 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -9,6 +9,7 @@ "sourceType": "module" }, "rules": { - "no-console": 0 + "no-console": 0, + "no-unused-vars": ["error", { "vars": "all", "args": "none"}] } -} \ No newline at end of file +} -- GitLab