From 79f96a94a17a6878c0e742771c5084f5ad4e8f86 Mon Sep 17 00:00:00 2001 From: Danijel Martinek Date: Wed, 13 May 2026 00:10:48 +0200 Subject: [PATCH] feat(core-eslint): flip feature-must-have-manifest from warn to error --- packages/core-eslint/base.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/packages/core-eslint/base.js b/packages/core-eslint/base.js index 130aa20..02f839e 100644 --- a/packages/core-eslint/base.js +++ b/packages/core-eslint/base.js @@ -33,10 +33,9 @@ export default [ plugins: { conformance: conformancePlugin }, rules: { // Structural conformance rules (milestone iii.a). - // `feature-must-have-manifest` is WARN today because only auth has a manifest; - // flip to ERROR after blog/media/navigation/marketing-pages migrate. + // All 5 features now have manifests; promoted to ERROR. "conformance/feature-must-have-manifest": [ - "warn", + "error", { repoRoot }, ], "conformance/usecase-must-have-test-file": "error",