We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 774e564 commit b5d98c9Copy full SHA for b5d98c9
lib/eslint.config_partial.mjs
@@ -230,6 +230,12 @@ export default [
230
name: 'SharedArrayBuffer',
231
message: "Use `const { constructSharedArrayBuffer } = require('internal/util');` instead of the global.",
232
},
233
+ // Temporal is not available in primordials because it can be
234
+ // disabled with --no-harmony-temporal CLI flag.
235
+ {
236
+ name: 'Temporal',
237
+ message: 'Use `const { Temporal } = globalThis;` instead of the global.',
238
+ },
239
{
240
name: 'TextDecoder',
241
message: "Use `const { TextDecoder } = require('internal/encoding');` instead of the global.",
0 commit comments