From b14b068d6ed203c37568b5c014c5ddc30f2550a9 Mon Sep 17 00:00:00 2001 From: zepumph Date: Fri, 26 Feb 2021 11:04:47 -0900 Subject: [PATCH] remove camelcase from formatting, https://github.com/phetsims/phet-info/issues/156 --- eslint/format_eslintrc.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/eslint/format_eslintrc.js b/eslint/format_eslintrc.js index d3c45d615..df287cb33 100644 --- a/eslint/format_eslintrc.js +++ b/eslint/format_eslintrc.js @@ -41,9 +41,6 @@ module.exports = { // enforce one true brace style 'brace-style': [ 'error', 'stroustrup', { allowSingleLine: true } ], - // require camel case names - camelcase: [ 'error', { properties: 'never', ignoreDestructuring: false } ], - // enforce or disallow capitalization of the first letter of a comment // https://eslint.org/docs/rules/capitalized-comments 'capitalized-comments': [ 'off', 'never', {