From 1ea8c895e944188e61acfed5e2ae3999f2dbc4dd Mon Sep 17 00:00:00 2001 From: NagyVikt Date: Fri, 24 Apr 2026 02:31:00 +0200 Subject: [PATCH] Keep generated CLI releases out of lint scope The release package output is a local generated artifact under apps/cli/release. It is gitignored, but Biome still checks it from the root command, so a generated package.json can break pnpm lint after otherwise clean Colony branding work. Constraint: apps/cli/release is generated and ignored by git but still visible to Biome's root file walk Rejected: Reformat the generated package output | release artifacts should not shape repository lint results Confidence: high Scope-risk: narrow Directive: Keep generated release outputs excluded from lint instead of editing generated files Tested: pnpm lint with copied ignored apps/cli/release/package.json Tested: git diff --cached --check Not-tested: Full workspace typecheck/test in this worktree because package-level node_modules links were incomplete --- biome.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/biome.json b/biome.json index 3e2d75b..55e2099 100644 --- a/biome.json +++ b/biome.json @@ -3,7 +3,7 @@ "vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true }, "files": { "ignoreUnknown": true, - "ignore": ["**/dist", "**/node_modules", "**/*.d.ts", "pnpm-lock.yaml"] + "ignore": ["**/dist", "**/node_modules", "**/*.d.ts", "pnpm-lock.yaml", "apps/cli/release"] }, "formatter": { "enabled": true,