From a1f43fa3019fa660dfe709a36070e7ccc3a97f99 Mon Sep 17 00:00:00 2001 From: Merlin Beutlberger Date: Thu, 15 Nov 2018 09:23:18 +0100 Subject: [PATCH] [INTERNAL] ESLint: Allow strings to use backticks --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 480a895ce..ae146528b 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -18,7 +18,8 @@ module.exports = { ], "quotes": [ "error", - "double" + "double", + { "allowTemplateLiterals": true } ], "semi": [ "error",