From 27dcb99c6d80718946d10017144b2aa68bed8b9e Mon Sep 17 00:00:00 2001 From: Jordan Harband Date: Tue, 6 Sep 2016 01:07:16 -0700 Subject: [PATCH] [eslint config] [base] [breaking] enable `func-call-spacing` --- packages/eslint-config-airbnb-base/rules/style.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/eslint-config-airbnb-base/rules/style.js b/packages/eslint-config-airbnb-base/rules/style.js index c80beaee..288b0ed5 100644 --- a/packages/eslint-config-airbnb-base/rules/style.js +++ b/packages/eslint-config-airbnb-base/rules/style.js @@ -30,8 +30,7 @@ module.exports = { // enforce spacing between functions and their invocations // http://eslint.org/docs/rules/func-call-spacing - // TODO: enable, semver-minor - 'func-call-spacing': ['off', 'never'], + 'func-call-spacing': ['error', 'never'], // require function expressions to have a name 'func-names': 'warn',