Template base para proyectos SaaS multi-tenant. Estructura inicial: - apps/backend (NestJS API) - apps/frontend (React/Vite) - apps/database (PostgreSQL DDL) - docs/ (Documentación) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
20 lines
659 B
JavaScript
20 lines
659 B
JavaScript
"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();
|
|
};
|