From b123d852dae0d339ff0b5b48703a591501f65fb9 Mon Sep 17 00:00:00 2001 From: Matt Derrick Date: Sun, 31 Jul 2016 19:46:41 +0100 Subject: [PATCH] Allow arrow functions --- .eslintrc-default | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.eslintrc-default b/.eslintrc-default index 5b5c32c..2223f66 100644 --- a/.eslintrc-default +++ b/.eslintrc-default @@ -32,7 +32,7 @@ "comma-style": 2, "computed-property-spacing": 2, "consistent-this": [2, "self"], - "func-style": [2, "declaration"], + "func-style": [2, "declaration", { "allowArrowFunctions": true }], "indent": 2, "linebreak-style": 2, "max-nested-callbacks": [2, 3],