From 326688c8a6593c9f65e87207e33b33130f3b9c4d Mon Sep 17 00:00:00 2001 From: zepumph Date: Fri, 26 Feb 2021 12:22:56 -0900 Subject: [PATCH] delete newline-per-chained-call, https://github.com/phetsims/phet-info/issues/156 --- eslint/format_eslintrc.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/eslint/format_eslintrc.js b/eslint/format_eslintrc.js index e18d103cd..e6de1c38e 100644 --- a/eslint/format_eslintrc.js +++ b/eslint/format_eslintrc.js @@ -191,11 +191,6 @@ module.exports = { // https://eslint.org/docs/rules/newline-before-return 'newline-before-return': 'off', - // enforces new line after each method call in the chain to make it - // more readable and easy to maintain - // https://eslint.org/docs/rules/newline-per-chained-call - 'newline-per-chained-call': [ 'error', { ignoreChainWithDepth: 4 } ], - // disallow use of bitwise operators // https://eslint.org/docs/rules/no-bitwise 'no-bitwise': 'error', // SO MANY ERRORS IN SCENERY