mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 07:53:06 +01:00
ca7c8c6f75
Refs: https://eslint.org/blog/2023/10/deprecating-formatting-rules/ PR-URL: https://github.com/nodejs/node/pull/50714 Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
18 lines
428 B
YAML
18 lines
428 B
YAML
## Docs-specific linter rules
|
|
|
|
rules:
|
|
# Ease some restrictions in doc examples
|
|
no-restricted-properties: off
|
|
no-undef: off
|
|
no-unused-expressions: off
|
|
no-unused-vars: off
|
|
symbol-description: off
|
|
|
|
# Add new ECMAScript features gradually
|
|
prefer-const: error
|
|
prefer-rest-params: error
|
|
prefer-template: error
|
|
|
|
# Stylistic rules
|
|
'@stylistic/js/no-multiple-empty-lines': [error, {max: 1, maxEOF: 0, maxBOF: 0}]
|