summaryrefslogtreecommitdiff
path: root/.eslintrc.js
diff options
context:
space:
mode:
Diffstat (limited to '.eslintrc.js')
-rw-r--r--.eslintrc.js26
1 files changed, 13 insertions, 13 deletions
diff --git a/.eslintrc.js b/.eslintrc.js
index 6d5668d5ae..9bd8e66123 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -277,18 +277,18 @@ module.exports = {
'node-core/no-duplicate-requires': 'error',
},
globals: {
- Atomics: false,
- BigInt: false,
- BigInt64Array: false,
- BigUint64Array: false,
- DTRACE_HTTP_CLIENT_REQUEST: false,
- DTRACE_HTTP_CLIENT_RESPONSE: false,
- DTRACE_HTTP_SERVER_REQUEST: false,
- DTRACE_HTTP_SERVER_RESPONSE: false,
- DTRACE_NET_SERVER_CONNECTION: false,
- DTRACE_NET_STREAM_END: false,
- TextEncoder: false,
- TextDecoder: false,
- queueMicrotask: false,
+ Atomics: 'readable',
+ BigInt: 'readable',
+ BigInt64Array: 'readable',
+ BigUint64Array: 'readable',
+ DTRACE_HTTP_CLIENT_REQUEST: 'readable',
+ DTRACE_HTTP_CLIENT_RESPONSE: 'readable',
+ DTRACE_HTTP_SERVER_REQUEST: 'readable',
+ DTRACE_HTTP_SERVER_RESPONSE: 'readable',
+ DTRACE_NET_SERVER_CONNECTION: 'readable',
+ DTRACE_NET_STREAM_END: 'readable',
+ TextEncoder: 'readable',
+ TextDecoder: 'readable',
+ queueMicrotask: 'readable',
},
};