From 7d5284d3905d80d0f2a5e3c25817bfc4a45f433f Mon Sep 17 00:00:00 2001 From: Dan Wallis Date: Wed, 20 Sep 2023 17:52:50 +0100 Subject: [PATCH] Allow use of double quotes where sensible --- eslint/.eslintrc-magento | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslint/.eslintrc-magento b/eslint/.eslintrc-magento index 482ece26..4063c8eb 100644 --- a/eslint/.eslintrc-magento +++ b/eslint/.eslintrc-magento @@ -92,7 +92,7 @@ "no-with": 2, "one-var": [2, "always"], "operator-assignment": [2, "always"], - "quotes": [2, "single", {"allowTemplateLiterals": true}], + "quotes": [2, "single", {"allowTemplateLiterals": true, "avoidEscape": true}], "radix": 2, "semi": [2, "always"], "semi-spacing": 2,