From dda527932954ecfa0207b019af6d9c098399cf80 Mon Sep 17 00:00:00 2001 From: Noah Botimer Date: Thu, 22 Feb 2018 13:54:42 -0500 Subject: [PATCH] :hammer: Allow untagged template literals in default ESLint config --- .eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 0805c31..13942ae 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -10,7 +10,7 @@ }], "operator-linebreak": ["error", "before"], "prefer-const": ["error", {"destructuring": "all"}], - "quotes": ["error", "double", {"avoidEscape": true}], + "quotes": ["error", "double", {"avoidEscape": true, "allowTemplateLiterals": true}], "semi": ["error", "always"], "space-before-function-paren": ["error", "always"] }