diff options
author | Michaƫl Zasso <targos@protonmail.com> | 2021-09-19 09:34:44 +0200 |
---|---|---|
committer | Node.js GitHub Bot <github-bot@iojs.org> | 2021-09-21 17:03:51 +0000 |
commit | f367af443496dc0dc8cdb924fabf1dd0f535be45 (patch) | |
tree | b8a68517028b794c1e93639d940603a4dca1b89d /tools/.eslintrc.yaml | |
parent | 549f96889a77c39fa4f2257305788a00848f9e97 (diff) | |
download | node-new-f367af443496dc0dc8cdb924fabf1dd0f535be45.tar.gz |
tools: extend default yamllint config
PR-URL: https://github.com/nodejs/node/pull/40150
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Diffstat (limited to 'tools/.eslintrc.yaml')
-rw-r--r-- | tools/.eslintrc.yaml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/.eslintrc.yaml b/tools/.eslintrc.yaml index b98c59a15c..d2fe553393 100644 --- a/tools/.eslintrc.yaml +++ b/tools/.eslintrc.yaml @@ -8,6 +8,8 @@ rules: - properties: 'never' ignoreDestructuring: true allow: ['child_process'] - no-unused-vars: [error, { args: 'after-used' }] + no-unused-vars: + - error + - args: 'after-used' prefer-arrow-callback: error no-var: error |