From af60a5730a8322c39ef1c45d55ca00f8d2654c00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1=C5=A1=20Ml=C3=A1dek?= Date: Sat, 12 Feb 2022 23:14:21 +0100 Subject: [PATCH] [ui] also disable linting for _vars not just _args --- webui/.eslintrc.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/webui/.eslintrc.json b/webui/.eslintrc.json index cabcbdf..dbd5660 100644 --- a/webui/.eslintrc.json +++ b/webui/.eslintrc.json @@ -17,7 +17,10 @@ } ], "rules": { - "@typescript-eslint/no-unused-vars": ["warn", { "argsIgnorePattern": "^_" }] + "@typescript-eslint/no-unused-vars": [ + "warn", + { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" } + ] }, "settings": { "svelte3/typescript": true // load TypeScript as peer dependency