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
+17-1Lines changed: 17 additions & 1 deletion
Display the source diff
Display the rich diff
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 v10.6.0 Documentation](https://nodejs.org/docs/v10.6.0/api/).
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/).
12
12
13
13
### Configured Node.js version range
14
14
@@ -62,6 +62,8 @@ The `"ignores"` option accepts an array of the following strings.
62
62
-`"Buffer.allocUnsafe"`
63
63
-`"Buffer.allocUnsafeSlow"`
64
64
-`"Buffer.from"`
65
+
-`"TextDecoder"`
66
+
-`"TextEncoder"`
65
67
-`"URL"`
66
68
-`"URLSearchParams"`
67
69
-`"console.clear"`
@@ -76,6 +78,7 @@ The `"ignores"` option accepts an array of the following strings.
76
78
-`"console.markTimeline"`
77
79
-`"console.profile"`
78
80
-`"console.profileEnd"`
81
+
-`"console.timeLog"`
79
82
-`"console.timeStamp"`
80
83
-`"console.timeline"`
81
84
-`"console.timelineEnd"`
@@ -86,11 +89,13 @@ The `"ignores"` option accepts an array of the following strings.
86
89
-`"process.getegid"`
87
90
-`"process.geteuid"`
88
91
-`"process.hasUncaughtExceptionCaptureCallback"`
92
+
-`"process.hrtime.bigint"`
89
93
-`"process.ppid"`
90
94
-`"process.release"`
91
95
-`"process.setegid"`
92
96
-`"process.seteuid"`
93
97
-`"process.setUncaughtExceptionCaptureCallback"`
98
+
-`"queueMicrotask"`
94
99
-`"require.resolve.paths"`
95
100
96
101
**`assert` module:**
@@ -136,6 +141,7 @@ The `"ignores"` option accepts an array of the following strings.
136
141
-`"console.markTimeline"`
137
142
-`"console.profile"`
138
143
-`"console.profileEnd"`
144
+
-`"console.timeLog"`
139
145
-`"console.timeStamp"`
140
146
-`"console.timeline"`
141
147
-`"console.timelineEnd"`
@@ -147,6 +153,8 @@ The `"ignores"` option accepts an array of the following strings.
147
153
-`"crypto.Certificate.verifySpkac"`
148
154
-`"crypto.constants"`
149
155
-`"crypto.fips"`
156
+
-`"crypto.generateKeyPair"`
157
+
-`"crypto.generateKeyPairSync"`
150
158
-`"crypto.getCurves"`
151
159
-`"crypto.getFips"`
152
160
-`"crypto.privateEncrypt"`
@@ -166,6 +174,7 @@ The `"ignores"` option accepts an array of the following strings.
166
174
167
175
**`fs` module:**
168
176
177
+
-`"fs.Dirent"`
169
178
-`"fs.copyFile"`
170
179
-`"fs.copyFileSync"`
171
180
-`"fs.mkdtemp"`
@@ -189,7 +198,10 @@ The `"ignores"` option accepts an array of the following strings.
189
198
**`os` module:**
190
199
191
200
-`"os.constants"`
201
+
-`"os.constants.priority"`
202
+
-`"os.getPriority"`
192
203
-`"os.homedir"`
204
+
-`"os.setPriority"`
193
205
-`"os.userInfo"`
194
206
195
207
**`path` module:**
@@ -202,13 +214,15 @@ The `"ignores"` option accepts an array of the following strings.
202
214
203
215
**`process` module:**
204
216
217
+
-`"process.allowedNodeEnvironmentFlags"`
205
218
-`"process.argv0"`
206
219
-`"process.channel"`
207
220
-`"process.cpuUsage"`
208
221
-`"process.emitWarning"`
209
222
-`"process.getegid"`
210
223
-`"process.geteuid"`
211
224
-`"process.hasUncaughtExceptionCaptureCallback"`
225
+
-`"process.hrtime.bigint"`
212
226
-`"process.ppid"`
213
227
-`"process.release"`
214
228
-`"process.setegid"`
@@ -243,6 +257,7 @@ The `"ignores"` option accepts an array of the following strings.
243
257
-`"util.TextDecoder"`
244
258
-`"util.TextEncoder"`
245
259
-`"util.types"`
260
+
-`"util.types.isBoxedPrimitive"`
246
261
247
262
**`v8` module:**
248
263
@@ -259,6 +274,7 @@ The `"ignores"` option accepts an array of the following strings.
0 commit comments