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>
15 lines
445 B
JavaScript
15 lines
445 B
JavaScript
"use strict";
|
|
|
|
module.exports = function (it) {
|
|
const { pluginName, ruleId } = it;
|
|
|
|
return `
|
|
A configuration object specifies rule "${ruleId}", but could not find plugin "${pluginName}".
|
|
|
|
Common causes of this problem include:
|
|
|
|
1. The "${pluginName}" plugin is not defined in your configuration file.
|
|
2. The "${pluginName}" plugin is not defined within the same configuration object in which the "${ruleId}" rule is applied.
|
|
`.trimStart();
|
|
};
|