From 21bf4b5a6e080c168d88e174c29203ebbf2bd483 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Mon, 23 Mar 2015 12:19:27 -0700 Subject: ESLint: no-space-before-semi => semi-spacing --- .eslintrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc b/.eslintrc index 834a1a2..7fc2b7c 100644 --- a/.eslintrc +++ b/.eslintrc @@ -33,7 +33,6 @@ "no-process-env": 2, "no-reserved-keys": 0, "no-self-compare": 2, - "no-space-before-semi": 2, "no-spaced-func": 2, "no-throw-literal": 2, "no-trailing-spaces": 2, @@ -44,6 +43,7 @@ "quotes": 0, "radix": 2, "semi": [2, "always"], + "semi-spacing": [2, {"before": false, "after": true}], "space-after-keywords": [2, "always", {"checkFunctionKeyword": true}], "space-before-blocks": [2, "always"], "space-before-function-parentheses": [2, {"anonymous": "always", "named": "never"}], -- cgit v1.2.3