|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
import debugOrig from "debug"; |
|
import fs from "fs"; |
|
import importFresh from "import-fresh"; |
|
import { createRequire } from "module"; |
|
import path from "path"; |
|
import stripComments from "strip-json-comments"; |
|
|
|
import { |
|
ConfigArray, |
|
ConfigDependency, |
|
IgnorePattern, |
|
OverrideTester |
|
} from "./config-array/index.js"; |
|
import ConfigValidator from "./shared/config-validator.js"; |
|
import * as naming from "./shared/naming.js"; |
|
import * as ModuleResolver from "./shared/relative-module-resolver.js"; |
|
|
|
const require = createRequire(import.meta.url); |
|
|
|
const debug = debugOrig("eslintrc:config-array-factory"); |
|
|
|
|
|
|
|
|
|
|
|
const configFilenames = [ |
|
".eslintrc.js", |
|
".eslintrc.cjs", |
|
".eslintrc.yaml", |
|
".eslintrc.yml", |
|
".eslintrc.json", |
|
".eslintrc", |
|
"package.json" |
|
]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const internalSlotsMap = new WeakMap(); |
|
|
|
|
|
const normalizedPlugins = new WeakMap(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
function isFilePath(nameOrPath) { |
|
return ( |
|
/^\.{1,2}[/\\]/u.test(nameOrPath) || |
|
path.isAbsolute(nameOrPath) |
|
); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function readFile(filePath) { |
|
return fs.readFileSync(filePath, "utf8").replace(/^\ufeff/u, ""); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function loadYAMLConfigFile(filePath) { |
|
debug(`Loading YAML config file: ${filePath}`); |
|
|
|
|
|
const yaml = require("js-yaml"); |
|
|
|
try { |
|
|
|
|
|
return yaml.load(readFile(filePath)) || {}; |
|
} catch (e) { |
|
debug(`Error reading YAML file: ${filePath}`); |
|
e.message = `Cannot read config file: ${filePath}\nError: ${e.message}`; |
|
throw e; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function loadJSONConfigFile(filePath) { |
|
debug(`Loading JSON config file: ${filePath}`); |
|
|
|
try { |
|
return JSON.parse(stripComments(readFile(filePath))); |
|
} catch (e) { |
|
debug(`Error reading JSON file: ${filePath}`); |
|
e.message = `Cannot read config file: ${filePath}\nError: ${e.message}`; |
|
e.messageTemplate = "failed-to-read-json"; |
|
e.messageData = { |
|
path: filePath, |
|
message: e.message |
|
}; |
|
throw e; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function loadLegacyConfigFile(filePath) { |
|
debug(`Loading legacy config file: ${filePath}`); |
|
|
|
|
|
const yaml = require("js-yaml"); |
|
|
|
try { |
|
return yaml.load(stripComments(readFile(filePath))) || {}; |
|
} catch (e) { |
|
debug("Error reading YAML file: %s\n%o", filePath, e); |
|
e.message = `Cannot read config file: ${filePath}\nError: ${e.message}`; |
|
throw e; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function loadJSConfigFile(filePath) { |
|
debug(`Loading JS config file: ${filePath}`); |
|
try { |
|
return importFresh(filePath); |
|
} catch (e) { |
|
debug(`Error reading JavaScript file: ${filePath}`); |
|
e.message = `Cannot read config file: ${filePath}\nError: ${e.message}`; |
|
throw e; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function loadPackageJSONConfigFile(filePath) { |
|
debug(`Loading package.json config file: ${filePath}`); |
|
try { |
|
const packageData = loadJSONConfigFile(filePath); |
|
|
|
if (!Object.hasOwnProperty.call(packageData, "eslintConfig")) { |
|
throw Object.assign( |
|
new Error("package.json file doesn't have 'eslintConfig' field."), |
|
{ code: "ESLINT_CONFIG_FIELD_NOT_FOUND" } |
|
); |
|
} |
|
|
|
return packageData.eslintConfig; |
|
} catch (e) { |
|
debug(`Error reading package.json file: ${filePath}`); |
|
e.message = `Cannot read config file: ${filePath}\nError: ${e.message}`; |
|
throw e; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function loadESLintIgnoreFile(filePath) { |
|
debug(`Loading .eslintignore file: ${filePath}`); |
|
|
|
try { |
|
return readFile(filePath) |
|
.split(/\r?\n/gu) |
|
.filter(line => line.trim() !== "" && !line.startsWith("#")); |
|
} catch (e) { |
|
debug(`Error reading .eslintignore file: ${filePath}`); |
|
e.message = `Cannot read .eslintignore file: ${filePath}\nError: ${e.message}`; |
|
throw e; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function configInvalidError(configName, importerName, messageTemplate) { |
|
return Object.assign( |
|
new Error(`Failed to load config "${configName}" to extend from.`), |
|
{ |
|
messageTemplate, |
|
messageData: { configName, importerName } |
|
} |
|
); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function loadConfigFile(filePath) { |
|
switch (path.extname(filePath)) { |
|
case ".js": |
|
case ".cjs": |
|
return loadJSConfigFile(filePath); |
|
|
|
case ".json": |
|
if (path.basename(filePath) === "package.json") { |
|
return loadPackageJSONConfigFile(filePath); |
|
} |
|
return loadJSONConfigFile(filePath); |
|
|
|
case ".yaml": |
|
case ".yml": |
|
return loadYAMLConfigFile(filePath); |
|
|
|
default: |
|
return loadLegacyConfigFile(filePath); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function writeDebugLogForLoading(request, relativeTo, filePath) { |
|
|
|
if (debug.enabled) { |
|
let nameAndVersion = null; |
|
|
|
try { |
|
const packageJsonPath = ModuleResolver.resolve( |
|
`${request}/package.json`, |
|
relativeTo |
|
); |
|
const { version = "unknown" } = require(packageJsonPath); |
|
|
|
nameAndVersion = `${request}@${version}`; |
|
} catch (error) { |
|
debug("package.json was not found:", error.message); |
|
nameAndVersion = request; |
|
} |
|
|
|
debug("Loaded: %s (%s)", nameAndVersion, filePath); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function createContext( |
|
{ cwd, resolvePluginsRelativeTo }, |
|
providedType, |
|
providedName, |
|
providedFilePath, |
|
providedMatchBasePath |
|
) { |
|
const filePath = providedFilePath |
|
? path.resolve(cwd, providedFilePath) |
|
: ""; |
|
const matchBasePath = |
|
(providedMatchBasePath && path.resolve(cwd, providedMatchBasePath)) || |
|
(filePath && path.dirname(filePath)) || |
|
cwd; |
|
const name = |
|
providedName || |
|
(filePath && path.relative(cwd, filePath)) || |
|
""; |
|
const pluginBasePath = |
|
resolvePluginsRelativeTo || |
|
(filePath && path.dirname(filePath)) || |
|
cwd; |
|
const type = providedType || "config"; |
|
|
|
return { filePath, matchBasePath, name, pluginBasePath, type }; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function normalizePlugin(plugin) { |
|
|
|
|
|
let normalizedPlugin = normalizedPlugins.get(plugin); |
|
|
|
if (normalizedPlugin) { |
|
return normalizedPlugin; |
|
} |
|
|
|
normalizedPlugin = { |
|
configs: plugin.configs || {}, |
|
environments: plugin.environments || {}, |
|
processors: plugin.processors || {}, |
|
rules: plugin.rules || {} |
|
}; |
|
|
|
|
|
normalizedPlugins.set(plugin, normalizedPlugin); |
|
|
|
return normalizedPlugin; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class ConfigArrayFactory { |
|
|
|
|
|
|
|
|
|
|
|
constructor({ |
|
additionalPluginPool = new Map(), |
|
cwd = process.cwd(), |
|
resolvePluginsRelativeTo, |
|
builtInRules, |
|
resolver = ModuleResolver, |
|
eslintAllPath, |
|
getEslintAllConfig, |
|
eslintRecommendedPath, |
|
getEslintRecommendedConfig |
|
} = {}) { |
|
internalSlotsMap.set(this, { |
|
additionalPluginPool, |
|
cwd, |
|
resolvePluginsRelativeTo: |
|
resolvePluginsRelativeTo && |
|
path.resolve(cwd, resolvePluginsRelativeTo), |
|
builtInRules, |
|
resolver, |
|
eslintAllPath, |
|
getEslintAllConfig, |
|
eslintRecommendedPath, |
|
getEslintRecommendedConfig |
|
}); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
create(configData, { basePath, filePath, name } = {}) { |
|
if (!configData) { |
|
return new ConfigArray(); |
|
} |
|
|
|
const slots = internalSlotsMap.get(this); |
|
const ctx = createContext(slots, "config", name, filePath, basePath); |
|
const elements = this._normalizeConfigData(configData, ctx); |
|
|
|
return new ConfigArray(...elements); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
loadFile(filePath, { basePath, name } = {}) { |
|
const slots = internalSlotsMap.get(this); |
|
const ctx = createContext(slots, "config", name, filePath, basePath); |
|
|
|
return new ConfigArray(...this._loadConfigData(ctx)); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
loadInDirectory(directoryPath, { basePath, name } = {}) { |
|
const slots = internalSlotsMap.get(this); |
|
|
|
for (const filename of configFilenames) { |
|
const ctx = createContext( |
|
slots, |
|
"config", |
|
name, |
|
path.join(directoryPath, filename), |
|
basePath |
|
); |
|
|
|
if (fs.existsSync(ctx.filePath) && fs.statSync(ctx.filePath).isFile()) { |
|
let configData; |
|
|
|
try { |
|
configData = loadConfigFile(ctx.filePath); |
|
} catch (error) { |
|
if (!error || error.code !== "ESLINT_CONFIG_FIELD_NOT_FOUND") { |
|
throw error; |
|
} |
|
} |
|
|
|
if (configData) { |
|
debug(`Config file found: ${ctx.filePath}`); |
|
return new ConfigArray( |
|
...this._normalizeConfigData(configData, ctx) |
|
); |
|
} |
|
} |
|
} |
|
|
|
debug(`Config file not found on ${directoryPath}`); |
|
return new ConfigArray(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
static getPathToConfigFileInDirectory(directoryPath) { |
|
for (const filename of configFilenames) { |
|
const filePath = path.join(directoryPath, filename); |
|
|
|
if (fs.existsSync(filePath)) { |
|
if (filename === "package.json") { |
|
try { |
|
loadPackageJSONConfigFile(filePath); |
|
return filePath; |
|
} catch { } |
|
} else { |
|
return filePath; |
|
} |
|
} |
|
} |
|
return null; |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
loadESLintIgnore(filePath) { |
|
const slots = internalSlotsMap.get(this); |
|
const ctx = createContext( |
|
slots, |
|
"ignore", |
|
void 0, |
|
filePath, |
|
slots.cwd |
|
); |
|
const ignorePatterns = loadESLintIgnoreFile(ctx.filePath); |
|
|
|
return new ConfigArray( |
|
...this._normalizeESLintIgnoreData(ignorePatterns, ctx) |
|
); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
loadDefaultESLintIgnore() { |
|
const slots = internalSlotsMap.get(this); |
|
const eslintIgnorePath = path.resolve(slots.cwd, ".eslintignore"); |
|
const packageJsonPath = path.resolve(slots.cwd, "package.json"); |
|
|
|
if (fs.existsSync(eslintIgnorePath)) { |
|
return this.loadESLintIgnore(eslintIgnorePath); |
|
} |
|
if (fs.existsSync(packageJsonPath)) { |
|
const data = loadJSONConfigFile(packageJsonPath); |
|
|
|
if (Object.hasOwnProperty.call(data, "eslintIgnore")) { |
|
if (!Array.isArray(data.eslintIgnore)) { |
|
throw new Error("Package.json eslintIgnore property requires an array of paths"); |
|
} |
|
const ctx = createContext( |
|
slots, |
|
"ignore", |
|
"eslintIgnore in package.json", |
|
packageJsonPath, |
|
slots.cwd |
|
); |
|
|
|
return new ConfigArray( |
|
...this._normalizeESLintIgnoreData(data.eslintIgnore, ctx) |
|
); |
|
} |
|
} |
|
|
|
return new ConfigArray(); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_loadConfigData(ctx) { |
|
return this._normalizeConfigData(loadConfigFile(ctx.filePath), ctx); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*_normalizeESLintIgnoreData(ignorePatterns, ctx) { |
|
const elements = this._normalizeObjectConfigData( |
|
{ ignorePatterns }, |
|
ctx |
|
); |
|
|
|
|
|
for (const element of elements) { |
|
if (element.ignorePattern) { |
|
element.ignorePattern.loose = true; |
|
} |
|
yield element; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_normalizeConfigData(configData, ctx) { |
|
const validator = new ConfigValidator(); |
|
|
|
validator.validateConfigSchema(configData, ctx.name || ctx.filePath); |
|
return this._normalizeObjectConfigData(configData, ctx); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*_normalizeObjectConfigData(configData, ctx) { |
|
const { files, excludedFiles, ...configBody } = configData; |
|
const criteria = OverrideTester.create( |
|
files, |
|
excludedFiles, |
|
ctx.matchBasePath |
|
); |
|
const elements = this._normalizeObjectConfigDataBody(configBody, ctx); |
|
|
|
|
|
for (const element of elements) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
element.criteria = OverrideTester.and(criteria, element.criteria); |
|
|
|
|
|
|
|
|
|
|
|
if (element.criteria) { |
|
element.root = void 0; |
|
} |
|
|
|
yield element; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*_normalizeObjectConfigDataBody( |
|
{ |
|
env, |
|
extends: extend, |
|
globals, |
|
ignorePatterns, |
|
noInlineConfig, |
|
parser: parserName, |
|
parserOptions, |
|
plugins: pluginList, |
|
processor, |
|
reportUnusedDisableDirectives, |
|
root, |
|
rules, |
|
settings, |
|
overrides: overrideList = [] |
|
}, |
|
ctx |
|
) { |
|
const extendList = Array.isArray(extend) ? extend : [extend]; |
|
const ignorePattern = ignorePatterns && new IgnorePattern( |
|
Array.isArray(ignorePatterns) ? ignorePatterns : [ignorePatterns], |
|
ctx.matchBasePath |
|
); |
|
|
|
|
|
for (const extendName of extendList.filter(Boolean)) { |
|
yield* this._loadExtends(extendName, ctx); |
|
} |
|
|
|
|
|
const parser = parserName && this._loadParser(parserName, ctx); |
|
const plugins = pluginList && this._loadPlugins(pluginList, ctx); |
|
|
|
|
|
if (plugins) { |
|
yield* this._takeFileExtensionProcessors(plugins, ctx); |
|
} |
|
|
|
|
|
yield { |
|
|
|
|
|
type: ctx.type, |
|
name: ctx.name, |
|
filePath: ctx.filePath, |
|
|
|
|
|
criteria: null, |
|
env, |
|
globals, |
|
ignorePattern, |
|
noInlineConfig, |
|
parser, |
|
parserOptions, |
|
plugins, |
|
processor, |
|
reportUnusedDisableDirectives, |
|
root, |
|
rules, |
|
settings |
|
}; |
|
|
|
|
|
for (let i = 0; i < overrideList.length; ++i) { |
|
yield* this._normalizeObjectConfigData( |
|
overrideList[i], |
|
{ ...ctx, name: `${ctx.name}#overrides[${i}]` } |
|
); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_loadExtends(extendName, ctx) { |
|
debug("Loading {extends:%j} relative to %s", extendName, ctx.filePath); |
|
try { |
|
if (extendName.startsWith("eslint:")) { |
|
return this._loadExtendedBuiltInConfig(extendName, ctx); |
|
} |
|
if (extendName.startsWith("plugin:")) { |
|
return this._loadExtendedPluginConfig(extendName, ctx); |
|
} |
|
return this._loadExtendedShareableConfig(extendName, ctx); |
|
} catch (error) { |
|
error.message += `\nReferenced from: ${ctx.filePath || ctx.name}`; |
|
throw error; |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_loadExtendedBuiltInConfig(extendName, ctx) { |
|
const { |
|
eslintAllPath, |
|
getEslintAllConfig, |
|
eslintRecommendedPath, |
|
getEslintRecommendedConfig |
|
} = internalSlotsMap.get(this); |
|
|
|
if (extendName === "eslint:recommended") { |
|
const name = `${ctx.name} » ${extendName}`; |
|
|
|
if (getEslintRecommendedConfig) { |
|
if (typeof getEslintRecommendedConfig !== "function") { |
|
throw new Error(`getEslintRecommendedConfig must be a function instead of '${getEslintRecommendedConfig}'`); |
|
} |
|
return this._normalizeConfigData(getEslintRecommendedConfig(), { ...ctx, name, filePath: "" }); |
|
} |
|
return this._loadConfigData({ |
|
...ctx, |
|
name, |
|
filePath: eslintRecommendedPath |
|
}); |
|
} |
|
if (extendName === "eslint:all") { |
|
const name = `${ctx.name} » ${extendName}`; |
|
|
|
if (getEslintAllConfig) { |
|
if (typeof getEslintAllConfig !== "function") { |
|
throw new Error(`getEslintAllConfig must be a function instead of '${getEslintAllConfig}'`); |
|
} |
|
return this._normalizeConfigData(getEslintAllConfig(), { ...ctx, name, filePath: "" }); |
|
} |
|
return this._loadConfigData({ |
|
...ctx, |
|
name, |
|
filePath: eslintAllPath |
|
}); |
|
} |
|
|
|
throw configInvalidError(extendName, ctx.name, "extend-config-missing"); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_loadExtendedPluginConfig(extendName, ctx) { |
|
const slashIndex = extendName.lastIndexOf("/"); |
|
|
|
if (slashIndex === -1) { |
|
throw configInvalidError(extendName, ctx.filePath, "plugin-invalid"); |
|
} |
|
|
|
const pluginName = extendName.slice("plugin:".length, slashIndex); |
|
const configName = extendName.slice(slashIndex + 1); |
|
|
|
if (isFilePath(pluginName)) { |
|
throw new Error("'extends' cannot use a file path for plugins."); |
|
} |
|
|
|
const plugin = this._loadPlugin(pluginName, ctx); |
|
const configData = |
|
plugin.definition && |
|
plugin.definition.configs[configName]; |
|
|
|
if (configData) { |
|
return this._normalizeConfigData(configData, { |
|
...ctx, |
|
filePath: plugin.filePath || ctx.filePath, |
|
name: `${ctx.name} » plugin:${plugin.id}/${configName}` |
|
}); |
|
} |
|
|
|
throw plugin.error || configInvalidError(extendName, ctx.filePath, "extend-config-missing"); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_loadExtendedShareableConfig(extendName, ctx) { |
|
const { cwd, resolver } = internalSlotsMap.get(this); |
|
const relativeTo = ctx.filePath || path.join(cwd, "__placeholder__.js"); |
|
let request; |
|
|
|
if (isFilePath(extendName)) { |
|
request = extendName; |
|
} else if (extendName.startsWith(".")) { |
|
request = `./${extendName}`; |
|
} else { |
|
request = naming.normalizePackageName( |
|
extendName, |
|
"eslint-config" |
|
); |
|
} |
|
|
|
let filePath; |
|
|
|
try { |
|
filePath = resolver.resolve(request, relativeTo); |
|
} catch (error) { |
|
|
|
if (error && error.code === "MODULE_NOT_FOUND") { |
|
throw configInvalidError(extendName, ctx.filePath, "extend-config-missing"); |
|
} |
|
throw error; |
|
} |
|
|
|
writeDebugLogForLoading(request, relativeTo, filePath); |
|
return this._loadConfigData({ |
|
...ctx, |
|
filePath, |
|
name: `${ctx.name} » ${request}` |
|
}); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_loadPlugins(names, ctx) { |
|
return names.reduce((map, name) => { |
|
if (isFilePath(name)) { |
|
throw new Error("Plugins array cannot includes file paths."); |
|
} |
|
const plugin = this._loadPlugin(name, ctx); |
|
|
|
map[plugin.id] = plugin; |
|
|
|
return map; |
|
}, {}); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_loadParser(nameOrPath, ctx) { |
|
debug("Loading parser %j from %s", nameOrPath, ctx.filePath); |
|
|
|
const { cwd, resolver } = internalSlotsMap.get(this); |
|
const relativeTo = ctx.filePath || path.join(cwd, "__placeholder__.js"); |
|
|
|
try { |
|
const filePath = resolver.resolve(nameOrPath, relativeTo); |
|
|
|
writeDebugLogForLoading(nameOrPath, relativeTo, filePath); |
|
|
|
return new ConfigDependency({ |
|
definition: require(filePath), |
|
filePath, |
|
id: nameOrPath, |
|
importerName: ctx.name, |
|
importerPath: ctx.filePath |
|
}); |
|
} catch (error) { |
|
|
|
|
|
if (nameOrPath === "espree") { |
|
debug("Fallback espree."); |
|
return new ConfigDependency({ |
|
definition: require("espree"), |
|
filePath: require.resolve("espree"), |
|
id: nameOrPath, |
|
importerName: ctx.name, |
|
importerPath: ctx.filePath |
|
}); |
|
} |
|
|
|
debug("Failed to load parser '%s' declared in '%s'.", nameOrPath, ctx.name); |
|
error.message = `Failed to load parser '${nameOrPath}' declared in '${ctx.name}': ${error.message}`; |
|
|
|
return new ConfigDependency({ |
|
error, |
|
id: nameOrPath, |
|
importerName: ctx.name, |
|
importerPath: ctx.filePath |
|
}); |
|
} |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
_loadPlugin(name, ctx) { |
|
debug("Loading plugin %j from %s", name, ctx.filePath); |
|
|
|
const { additionalPluginPool, resolver } = internalSlotsMap.get(this); |
|
const request = naming.normalizePackageName(name, "eslint-plugin"); |
|
const id = naming.getShorthandName(request, "eslint-plugin"); |
|
const relativeTo = path.join(ctx.pluginBasePath, "__placeholder__.js"); |
|
|
|
if (name.match(/\s+/u)) { |
|
const error = Object.assign( |
|
new Error(`Whitespace found in plugin name '${name}'`), |
|
{ |
|
messageTemplate: "whitespace-found", |
|
messageData: { pluginName: request } |
|
} |
|
); |
|
|
|
return new ConfigDependency({ |
|
error, |
|
id, |
|
importerName: ctx.name, |
|
importerPath: ctx.filePath |
|
}); |
|
} |
|
|
|
|
|
const plugin = |
|
additionalPluginPool.get(request) || |
|
additionalPluginPool.get(id); |
|
|
|
if (plugin) { |
|
return new ConfigDependency({ |
|
definition: normalizePlugin(plugin), |
|
original: plugin, |
|
filePath: "", |
|
id, |
|
importerName: ctx.name, |
|
importerPath: ctx.filePath |
|
}); |
|
} |
|
|
|
let filePath; |
|
let error; |
|
|
|
try { |
|
filePath = resolver.resolve(request, relativeTo); |
|
} catch (resolveError) { |
|
error = resolveError; |
|
|
|
if (error && error.code === "MODULE_NOT_FOUND") { |
|
error.messageTemplate = "plugin-missing"; |
|
error.messageData = { |
|
pluginName: request, |
|
resolvePluginsRelativeTo: ctx.pluginBasePath, |
|
importerName: ctx.name |
|
}; |
|
} |
|
} |
|
|
|
if (filePath) { |
|
try { |
|
writeDebugLogForLoading(request, relativeTo, filePath); |
|
|
|
const startTime = Date.now(); |
|
const pluginDefinition = require(filePath); |
|
|
|
debug(`Plugin ${filePath} loaded in: ${Date.now() - startTime}ms`); |
|
|
|
return new ConfigDependency({ |
|
definition: normalizePlugin(pluginDefinition), |
|
original: pluginDefinition, |
|
filePath, |
|
id, |
|
importerName: ctx.name, |
|
importerPath: ctx.filePath |
|
}); |
|
} catch (loadError) { |
|
error = loadError; |
|
} |
|
} |
|
|
|
debug("Failed to load plugin '%s' declared in '%s'.", name, ctx.name); |
|
error.message = `Failed to load plugin '${name}' declared in '${ctx.name}': ${error.message}`; |
|
return new ConfigDependency({ |
|
error, |
|
id, |
|
importerName: ctx.name, |
|
importerPath: ctx.filePath |
|
}); |
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*_takeFileExtensionProcessors(plugins, ctx) { |
|
for (const pluginId of Object.keys(plugins)) { |
|
const processors = |
|
plugins[pluginId] && |
|
plugins[pluginId].definition && |
|
plugins[pluginId].definition.processors; |
|
|
|
if (!processors) { |
|
continue; |
|
} |
|
|
|
for (const processorId of Object.keys(processors)) { |
|
if (processorId.startsWith(".")) { |
|
yield* this._normalizeObjectConfigData( |
|
{ |
|
files: [`*${processorId}`], |
|
processor: `${pluginId}/${processorId}` |
|
}, |
|
{ |
|
...ctx, |
|
type: "implicit-processor", |
|
name: `${ctx.name}#processors["${pluginId}/${processorId}"]` |
|
} |
|
); |
|
} |
|
} |
|
} |
|
} |
|
} |
|
|
|
export { ConfigArrayFactory, createContext }; |
|
|