From 4ccd800a610dd63b7573f3153b2bba5623739606 Mon Sep 17 00:00:00 2001 From: AkiraFukushima Date: Sat, 20 Apr 2019 15:43:11 +0900 Subject: [PATCH] Remove space-before-function-paren rule from eslint --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 03849227..56e34ac5 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -29,6 +29,7 @@ module.exports = { } ], camelcase: 'off', - '@typescript-eslint/camelcase': 'off' + '@typescript-eslint/camelcase': 'off', + 'space-before-function-paren': 'off' } }