From a9931d4d623aca3d455c257d4ad5f58f9199b6bc Mon Sep 17 00:00:00 2001 From: Muunatic Date: Thu, 9 Nov 2023 22:14:05 +0700 Subject: [PATCH] test(linter): add quotes rules --- .eslintrc.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index dda4956..b01422f 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -33,9 +33,12 @@ "after": true, "before": true }], + "no-trailing-spaces": 1, "no-unused-vars": 1, "no-useless-escape": 0, - "no-trailing-spaces": 1, + "quotes": ["warn", "double", { + "avoidEscape": false + }], "semi": "error", "semi-style": ["warn", "last"], "@typescript-eslint/member-delimiter-style": ["warn", {