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:
authorMestery <mestery@protonmail.com>2022-01-29 23:31:01 +0300
committerAntoine du Hamel <duhamelantoine1995@gmail.com>2022-02-14 21:09:17 +0300
commit8e653d9898613f9309c346c39507d262a52a65bf (patch)
tree68b585003f1c907f36b50e3e163c5bce7aebbac9 /tools
parentf282e4a94d0ccb37635bd91883692ccfbb80a509 (diff)
build,tools: change the quotes in YAML
Remove useless quotes and use single quotes when needed. PR-URL: https://github.com/nodejs/node/pull/41756 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Tierney Cyren <hello@bnb.im>
Diffstat (limited to 'tools')
-rw-r--r--tools/.eslintrc.yaml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/.eslintrc.yaml b/tools/.eslintrc.yaml
index d2fe5533936..de30cf6d123 100644
--- a/tools/.eslintrc.yaml
+++ b/tools/.eslintrc.yaml
@@ -5,11 +5,11 @@ env:
rules:
camelcase:
- error
- - properties: 'never'
+ - properties: never
ignoreDestructuring: true
- allow: ['child_process']
+ allow: [child_process]
no-unused-vars:
- error
- - args: 'after-used'
+ - args: after-used
prefer-arrow-callback: error
no-var: error