Files
med-notes/.pnpm-store/v10/files/22/951b7882aeb7664fea4c0eac819419a0ec07825501f868211f1b3262568c90819e30e3a7cedd121d7adbf263f4e56a60150ebee4e02684cc04000154d1583c
2025-05-09 05:30:08 +02:00

20 lines
659 B
Plaintext

"use strict";
module.exports = function (it) {
const { pluginName, resolvePluginsRelativeTo, importerName } = it;
return `
ESLint couldn't find the plugin "${pluginName}".
(The package "${pluginName}" was not found when loaded as a Node module from the directory "${resolvePluginsRelativeTo}".)
It's likely that the plugin isn't installed correctly. Try reinstalling by running the following:
npm install ${pluginName}@latest --save-dev
The plugin "${pluginName}" was referenced from the config file in "${importerName}".
If you still can't figure out the problem, please see https://eslint.org/docs/latest/use/troubleshooting.
`.trimStart();
};