From 18ab64fa9c6236487caaba6ee3aa9e117eb94e5c Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Fri, 22 Jul 2016 21:48:33 -0700 Subject: [PATCH] Relax rule: Spacing around * in generator functions There is an issue with the interaction between babel-eslint and eslint. See https://github.com/eslint/eslint/issues/6274 I think we'll just have to disable the generator-star-spacing rule until ESLint has support for the async keyword. Bummer. See https://github.com/feross/standard/issues/564#issuecomment-234699126 --- eslintrc.json | 1 - 1 file changed, 1 deletion(-) diff --git a/eslintrc.json b/eslintrc.json index e14a8c31..a3f8bf39 100644 --- a/eslintrc.json +++ b/eslintrc.json @@ -38,7 +38,6 @@ "dot-location": [2, "property"], "eol-last": 2, "eqeqeq": [2, "allow-null"], - "generator-star-spacing": [2, { "before": true, "after": true }], "handle-callback-err": [2, "^(err|error)$" ], "indent": [2, 2, { "SwitchCase": 1 }], "key-spacing": [2, { "beforeColon": false, "afterColon": true }],