From 93893258125cb88d682b3b86ec6e4d52903665a8 Mon Sep 17 00:00:00 2001 From: "Fabio M. Costa" Date: Wed, 19 Jul 2017 18:37:45 -0700 Subject: [PATCH] Rule change suggestion for 'object-curly-spacing' --- packages/eslint-config-godaddy/index.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/packages/eslint-config-godaddy/index.js b/packages/eslint-config-godaddy/index.js index 11a9520b..87c439fd 100644 --- a/packages/eslint-config-godaddy/index.js +++ b/packages/eslint-config-godaddy/index.js @@ -139,9 +139,7 @@ module.exports = { 'indent': [2, 2, { SwitchCase: 1 }], 'keyword-spacing': 2, 'linebreak-style': 2, - 'object-curly-spacing': [2, 'always', { - objectsInObjects: false - }], + 'object-curly-spacing': [2, 'always'], 'quotes': [2, 'single', { avoidEscape: true, allowTemplateLiterals: true }], 'quote-props': [2, 'consistent-as-needed'], 'space-before-blocks': 2,