Urara-Blog/node_modules/.pnpm-store/v3/files/1c/553cf47bd7d6228173a44b2a03f9d42c66fb6009e244923aca12ed8229319cba52e9e4bf90d24018cb4c8858972bfd5dcc1904ab497dd9acb80d415dd0a806
2022-08-14 01:14:53 +08:00

19 lines
668 B
Text

"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 stop by https://eslint.org/chat/help to chat with the team.
`.trimStart();
};