From f7c14e86a79e673ea12985462dad67807ccad32b Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 20 Mar 2021 14:57:31 -0700 Subject: [PATCH] tools: simplify eslint comma-dangle configuration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Remove comma-dangle settings in benchmark/.eslintrc.yaml as they are the same as what is set in .eslintrc.js. PR-URL: https://github.com/nodejs/node/pull/37850 Reviewed-By: Michaƫl Zasso Reviewed-By: Benjamin Gruenbaum Reviewed-By: James M Snell --- benchmark/.eslintrc.yaml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/benchmark/.eslintrc.yaml b/benchmark/.eslintrc.yaml index 8ce0f9f6e148c1..6871299adece7b 100644 --- a/benchmark/.eslintrc.yaml +++ b/benchmark/.eslintrc.yaml @@ -6,10 +6,4 @@ env: rules: no-var: error - comma-dangle: - - error - - arrays: 'always-multiline' - objects: 'only-multiline' - imports: 'only-multiline' - exports: 'only-multiline' prefer-arrow-callback: error