Catches manifest use cases that aren't wired through wireUseCase(...) in bind-production.ts / bind-dev-seed.ts. wireUseCase is the canonical helper that attaches __instrumented / __captured / __audited brands — skipping it produces an unbranded binding that assertFeatureConformance would reject at boot. This rule shifts that detection from ~3s (boot) to <1s (lint), keeping the layered conformance pattern: TS brands (compile), ESLint (lint), boot assertion (dev), smoke tests (CI). CLAUDE.md + conformance-quickref.md updated for the new rule (5 → 6).
40 lines
1.8 KiB
JavaScript
40 lines
1.8 KiB
JavaScript
import featureMustHaveManifest from "./rules/feature-must-have-manifest.js";
|
|
import usecaseMustHaveTestFile from "./rules/usecase-must-have-test-file.js";
|
|
import requiredCoresInstalled from "./rules/required-cores-installed.js";
|
|
import noUndeclaredEventPublish from "./rules/no-undeclared-event-publish.js";
|
|
import noUndeclaredAudit from "./rules/no-undeclared-audit.js";
|
|
import usecaseMustBeWired from "./rules/usecase-must-be-wired.js";
|
|
import componentMustHaveStory from "./rules/component-must-have-story.js";
|
|
import componentMustHaveTest from "./rules/component-must-have-test.js";
|
|
import atomicTierImportDirection from "./rules/atomic-tier-import-direction.js";
|
|
|
|
/**
|
|
* The `@repo/core-eslint` conformance plugin. Aggregates custom rules that
|
|
* enforce feature-conformance contracts (manifest presence, sibling tests,
|
|
* required-cores ↔ workspace consistency).
|
|
*
|
|
* Registered as the `conformance` plugin in flat config:
|
|
*
|
|
* import conformancePlugin from "@repo/core-eslint/plugin";
|
|
* export default [
|
|
* { plugins: { conformance: conformancePlugin } },
|
|
* { rules: { "conformance/feature-must-have-manifest": ["warn", { repoRoot: import.meta.dirname }] } },
|
|
* ];
|
|
*/
|
|
const plugin = {
|
|
meta: { name: "conformance", version: "0.3.0" },
|
|
rules: {
|
|
"feature-must-have-manifest": featureMustHaveManifest,
|
|
"usecase-must-have-test-file": usecaseMustHaveTestFile,
|
|
"required-cores-installed": requiredCoresInstalled,
|
|
"no-undeclared-event-publish": noUndeclaredEventPublish,
|
|
"no-undeclared-audit": noUndeclaredAudit,
|
|
"usecase-must-be-wired": usecaseMustBeWired,
|
|
"component-must-have-story": componentMustHaveStory,
|
|
"component-must-have-test": componentMustHaveTest,
|
|
"atomic-tier-import-direction": atomicTierImportDirection,
|
|
},
|
|
};
|
|
|
|
export default plugin;
|