mirror of
https://github.com/nodejs/node.git
synced 2024-11-22 07:37:56 +01:00
f367af4434
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>
19 lines
429 B
YAML
19 lines
429 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
|
|
no-var: error
|
|
prefer-const: error
|
|
prefer-rest-params: error
|
|
prefer-template: error
|
|
|
|
# Stylistic Issues
|
|
no-multiple-empty-lines: [error, {max: 1, maxEOF: 0, maxBOF: 0}]
|