From 43abe66003075c9a33ec2780e49b6c47957c8b38 Mon Sep 17 00:00:00 2001 From: ae Date: Sat, 7 Sep 2024 16:58:19 +0300 Subject: [PATCH] feat: consistent linter & formatter config --- .eslintrc.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.eslintrc.json b/.eslintrc.json index c4d2760..9d0c132 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -9,7 +9,8 @@ "rules": { "quotes": ["warn", "double"], "semi": ["warn", "never"], - "indent": ["warn", 4], - "prettier/prettier": 0 + "indent": ["warn", 2], + "prettier/prettier": 0, + "no-unused-vars": ["warn", { "argsIgnorePAttern": "^_" }] } }