From 884e0be9aafa984682dd5e9d04037de9bd43b875 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 15 Jan 2023 03:31:24 +0100 Subject: [PATCH] Added the double quotes rule in the .eslintrc.json --- .eslintrc.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 352c7b9..7fc37e3 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -7,6 +7,7 @@ "rules": { "@typescript-eslint/no-explicit-any": 0, "@typescript-eslint/no-use-before-define": "warn", - "@typescript-eslint/no-unused-vars": "warn" + "@typescript-eslint/no-unused-vars": "warn", + "@typescript-eslint/quotes": ["warn", "double", {"allowTemplateLiterals": true}] } } \ No newline at end of file