Skip to content

Commit 24c6e75

Browse files
NagyViktNagyVikt
andauthored
Keep generated CLI releases out of lint scope (#23)
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 Co-authored-by: NagyVikt <nagy.viktordp@gmail.com>
1 parent eb4dad9 commit 24c6e75

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"vcs": { "enabled": true, "clientKind": "git", "useIgnoreFile": true },
44
"files": {
55
"ignoreUnknown": true,
6-
"ignore": ["**/dist", "**/node_modules", "**/*.d.ts", "pnpm-lock.yaml"]
6+
"ignore": ["**/dist", "**/node_modules", "**/*.d.ts", "pnpm-lock.yaml", "apps/cli/release"]
77
},
88
"formatter": {
99
"enabled": true,

0 commit comments

Comments
 (0)