From 11ca018db9a889ede78f7d803743c17ec001a50f Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Tue, 23 Mar 2021 16:15:34 -0700 Subject: [PATCH] tools: simplify eslint comma-dangle configuration (tools) Remove the comma-dangle settings in tools/.eslintrc.yaml. They are duplicated in .eslintrc.js. PR-URL: https://github.com/nodejs/node/pull/37883 Reviewed-By: Colin Ihrig Reviewed-By: Antoine du Hamel --- tools/.eslintrc.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/tools/.eslintrc.yaml b/tools/.eslintrc.yaml index fbc3738465169f..b98c59a15c1b77 100644 --- a/tools/.eslintrc.yaml +++ b/tools/.eslintrc.yaml @@ -8,12 +8,6 @@ rules: - properties: 'never' ignoreDestructuring: true allow: ['child_process'] - comma-dangle: - - error - - arrays: 'always-multiline' - objects: 'only-multiline' - imports: 'only-multiline' - exports: 'only-multiline' no-unused-vars: [error, { args: 'after-used' }] prefer-arrow-callback: error no-var: error