Skip to content

Commit

Permalink
Address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
kaicataldo committed Feb 14, 2020
1 parent 879a9df commit f93ba69
Showing 1 changed file with 37 additions and 2 deletions.
39 changes: 37 additions & 2 deletions lib/rules/no-mixed-requires.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,43 @@
*/
"use strict"

// eslint-disable-next-line @mysticatea/node/no-unsupported-features/node-builtins
const { builtinModules: BUILTIN_MODULES } = require("module")
const BUILTIN_MODULES = [
"assert",
"async_hooks",
"buffer",
"child_process",
"cluster",
"crypto",
"dgram",
"dns",
"domain",
"events",
"fs",
"http",
"http2",
"https",
"inspector",
"net",
"os",
"path",
"perf_hooks",
"punycode",
"querystring",
"readline",
"repl",
"repl",
"stream",
"string_decoder",
"tls",
"trace_events",
"tty",
"url",
"util",
"v8",
"vm",
"worker_threads",
"zlib",
]

module.exports = {
meta: {
Expand Down

0 comments on commit f93ba69

Please sign in to comment.