103 lines
3.4 KiB
JavaScript
103 lines
3.4 KiB
JavaScript
/**
|
|
* @author Toru Nagashima
|
|
* See LICENSE file in root directory for full license.
|
|
*/
|
|
"use strict"
|
|
|
|
const { ReferenceTracker } = require("@eslint-community/eslint-utils")
|
|
const {
|
|
checkUnsupportedBuiltins,
|
|
checkUnsupportedBuiltinReferences,
|
|
messages,
|
|
} = require("../../util/check-unsupported-builtins")
|
|
const enumeratePropertyNames = require("../../util/enumerate-property-names")
|
|
const getConfiguredNodeVersion = require("../../util/get-configured-node-version")
|
|
const { getSourceCode } = require("../../util/eslint-compat")
|
|
|
|
const {
|
|
NodeBuiltinGlobals,
|
|
NodeBuiltinModules,
|
|
NodeBuiltinImportMeta,
|
|
} = require("../../unsupported-features/node-builtins.js")
|
|
|
|
const traceMap = {
|
|
globals: NodeBuiltinGlobals,
|
|
modules: NodeBuiltinModules,
|
|
}
|
|
|
|
/** @type {import('../rule-module').RuleModule} */
|
|
module.exports = {
|
|
meta: {
|
|
docs: {
|
|
description:
|
|
"disallow unsupported Node.js built-in APIs on the specified version",
|
|
recommended: true,
|
|
url: "https://github.com/eslint-community/eslint-plugin-n/blob/HEAD/docs/rules/no-unsupported-features/node-builtins.md",
|
|
},
|
|
type: "problem",
|
|
fixable: null,
|
|
schema: [
|
|
{
|
|
type: "object",
|
|
properties: {
|
|
version: getConfiguredNodeVersion.schema,
|
|
allowExperimental: { type: "boolean" },
|
|
ignores: {
|
|
type: "array",
|
|
items: {
|
|
enum: Array.from(
|
|
new Set([
|
|
...enumeratePropertyNames(traceMap.globals),
|
|
...enumeratePropertyNames(traceMap.modules),
|
|
...[
|
|
...enumeratePropertyNames(
|
|
NodeBuiltinImportMeta
|
|
),
|
|
].map(s => `import.meta.${s}`),
|
|
])
|
|
),
|
|
},
|
|
uniqueItems: true,
|
|
},
|
|
},
|
|
additionalProperties: false,
|
|
},
|
|
],
|
|
messages,
|
|
},
|
|
create(context) {
|
|
const sourceCode = getSourceCode(context)
|
|
const tracker = new ReferenceTracker(
|
|
/** @type {NonNullable<typeof sourceCode.scopeManager.globalScope>} */ (
|
|
sourceCode.scopeManager.globalScope
|
|
)
|
|
)
|
|
return {
|
|
"Program:exit"() {
|
|
checkUnsupportedBuiltins(context, traceMap)
|
|
},
|
|
"MetaProperty:exit"(node) {
|
|
if (
|
|
node.meta.name !== "import" ||
|
|
node.property.name !== "meta"
|
|
) {
|
|
return
|
|
}
|
|
|
|
const references = [
|
|
...tracker.iteratePropertyReferences(
|
|
node,
|
|
NodeBuiltinImportMeta
|
|
),
|
|
].map(reference => {
|
|
return {
|
|
...reference,
|
|
path: ["import.meta", ...reference.path],
|
|
}
|
|
})
|
|
checkUnsupportedBuiltinReferences(context, references)
|
|
},
|
|
}
|
|
},
|
|
}
|