From 70ac5192a2b1866f6cf5db15cee387f6ada12012 Mon Sep 17 00:00:00 2001 From: Seth Ladygo Date: Wed, 24 Apr 2019 16:32:50 -0700 Subject: [PATCH] eslint: no space before function parens --- cateditor/.eslintrc.js | 1 + 1 file changed, 1 insertion(+) diff --git a/cateditor/.eslintrc.js b/cateditor/.eslintrc.js index 82ae4a8..79ad1bc 100644 --- a/cateditor/.eslintrc.js +++ b/cateditor/.eslintrc.js @@ -16,6 +16,7 @@ module.exports = { ArrayExpression: "first" }], 'comma-dangle': ['warn', 'only-multiline'], 'spaced-comment': 'off', + 'space-before-function-paren': ['warn', 'never'], }, parserOptions: { parser: 'babel-eslint'