From b20372e35d9e938f06102af133b9047d0662c576 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Fri, 17 Mar 2017 17:54:15 -0700 Subject: [PATCH] Revert "Relax rule: Allow tagged template string expressions (no-unused-expressions)" This reverts commit eb9b41ffb5b6148484b0ecd3eeab54cb69626109. --- eslintrc.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslintrc.json b/eslintrc.json index db2b86fa..681f84c8 100644 --- a/eslintrc.json +++ b/eslintrc.json @@ -126,7 +126,7 @@ "no-unreachable": "error", "no-unsafe-finally": "error", "no-unsafe-negation": "error", - "no-unused-expressions": ["error", { "allowShortCircuit": true, "allowTernary": true, "allowTaggedTemplates": true }], + "no-unused-expressions": ["error", { "allowShortCircuit": true, "allowTernary": true }], "no-unused-vars": ["error", { "vars": "all", "args": "none" }], "no-use-before-define": ["error", { "functions": false, "classes": false, "variables": false }], "no-useless-call": "error",