From 04916088f193275eab7f09385f18da092485b904 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Fri, 5 Feb 2016 00:26:57 -0800 Subject: [PATCH] New rule: Enforce Usage of Spacing in Template Strings (template-curly-spacing) http://eslint.org/docs/2.0.0/rules/template-curly-spacing --- eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/eslintrc.json b/eslintrc.json index 16a308fd..9ebc354e 100644 --- a/eslintrc.json +++ b/eslintrc.json @@ -121,6 +121,7 @@ "space-infix-ops": 2, "space-unary-ops": [2, { "words": true, "nonwords": false }], "spaced-comment": [2, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }], + "template-curly-spacing": [2, "never"], "use-isnan": 2, "valid-typeof": 2, "wrap-iife": [2, "any"],