node/tools/.eslintrc.yaml
Rich Trott 32296fa193 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>
2021-03-25 21:57:42 -07:00

13 lines
249 B
YAML

env:
node: true
es6: true
rules:
camelcase:
- error
- properties: 'never'
ignoreDestructuring: true
allow: ['child_process']
no-unused-vars: [error, { args: 'after-used' }]
prefer-arrow-callback: error
no-var: error