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
committerRich Trott <rtrott@gmail.com>2021-03-26 07:57:42 +0300
commit32296fa1936927794fa22d530ec97297597e49b4 (patch)
tree387f5a2daef0b308a85ad8020738ac1b1094ee53 /tools
parent290c158018ac027703a9f672f290953b7050259b (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