You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/rules/no-unsupported-features/node-builtins.md
+35-9
Original file line number
Diff line number
Diff line change
@@ -8,7 +8,7 @@ Editor integrations of ESLint would be useful to know it in real-time.
8
8
9
9
## Rule Details
10
10
11
-
This rule reports APIs of Node.js built-in APIs on the basis of [Node.js v11.0.0 Documentation](https://nodejs.org/docs/v11.0.0/api/).
11
+
This rule reports APIs of Node.js built-in APIs on the basis of [Node.js v12.0.0 Documentation](https://nodejs.org/docs/v12.0.0/api/).
12
12
13
13
### Configured Node.js version range
14
14
@@ -22,19 +22,19 @@ For example of `package.json`:
22
22
"name": "your-module",
23
23
"version": "1.0.0",
24
24
"engines": {
25
-
"node": ">=6.0.0"
25
+
"node": ">=8.0.0"
26
26
}
27
27
}
28
28
```
29
29
30
-
If you omit the [engines] field, this rule chooses `>=6.0.0` as the configured Node.js version since `6` is the minimum version the community is maintaining (see also [Node.js Release Working Group](https://github.com/nodejs/Release#readme)).
30
+
If you omit the [engines] field, this rule chooses `>=8.0.0` as the configured Node.js version since `8` is the minimum version the community is maintaining (see also [Node.js Release Working Group](https://github.com/nodejs/Release#readme)).
0 commit comments