From bb4c3c0220a39aedf0976565cd8350e97f5ef29f Mon Sep 17 00:00:00 2001 From: Kevin MacMartin Date: Fri, 20 May 2016 15:54:10 -0400 Subject: [PATCH] Require no spaces before key colons and exactly one after --- eslintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eslintrc b/eslintrc index e17285c..ca66193 100644 --- a/eslintrc +++ b/eslintrc @@ -86,7 +86,7 @@ "comma-style": [ "warn" ], "computed-property-spacing": [ "warn" ], "indent": [ "warn", 4, { "SwitchCase": 1 } ], - "key-spacing": [ "warn", { "align": "value" } ], + "key-spacing": [ "warn" ], "keyword-spacing": [ "warn" ], "linebreak-style": [ "warn" ], "newline-after-var": [ "warn" ],