mirror of
https://github.com/nodejs/node.git
synced 2025-05-07 23:52:40 +00:00

Make the node-core/required-modules eslint rule smart enough to recognize that `import '../common/index.mjs'` in ESM files imports the mandatory 'common' module. PR-URL: https://github.com/nodejs/node/pull/27545 Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
8 lines
192 B
JavaScript
8 lines
192 B
JavaScript
// Flags: --experimental-modules
|
|
/* eslint-disable no-unused-vars */
|
|
import '../common/index.mjs';
|
|
import {
|
|
foo,
|
|
notfound
|
|
} from '../fixtures/es-module-loaders/module-named-exports.mjs';
|