From 2847f5d29dc867d9321131c3b6c02ef96bf90a84 Mon Sep 17 00:00:00 2001 From: Guillermo Rauch Date: Fri, 4 Mar 2016 07:09:24 -0800 Subject: [PATCH] disable rule that's broken with `async` atm --- .eslintrc.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.eslintrc.json b/.eslintrc.json index df1b813..0228a25 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -3,6 +3,7 @@ "parser": "babel-eslint", "rules": { "yoda": 0, + "arrow-parens": 0, "semi": [2, "always"], "no-extra-semi": 2, "semi-spacing": [2, { "before": false, "after": true }],