Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2021-03-24 02:15:34 +0300
committerRuy Adorno <ruyadorno@hotmail.com>2021-03-30 03:17:17 +0300
commitca93e5278368875ebc94636fe78d1a8016abddd4 (patch)
treea8b66339323ced2937791f52a6adc724a6ddcd75 /tools
parent2da532cef8b2159290c2bcc4f6fb61c9697ed738 (diff)
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 <cjihrig@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r--tools/.eslintrc.yaml6
1 files changed, 0 insertions, 6 deletions
diff --git a/tools/.eslintrc.yaml b/tools/.eslintrc.yaml
index fbc37384651..b98c59a15c1 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