Skip to content

Commit 4b1ba35

Browse files
Mark 0.2.109 in the changelog and ignore scratch dirs in lint (#614)
Local lint scanned .claude/ (7.3G of accumulated agent worktrees), tmp/, and .tmp/ because only scratch/ and .worktrees/ were ignored, producing 247k errors that made the gate unusable locally. CI never saw it.
1 parent 4340e29 commit 4b1ba35

3 files changed

Lines changed: 10 additions & 1 deletion

File tree

.prettierignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ scratch/
55
node_modules/
66
CHANGELOG.md
77

8+
tmp/
9+
.claude/
10+
.tmp/

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ matching `## [X.Y.Z]` section (plus install instructions). Do not maintain
1111
parallel copies under `docs/` or `scripts/notes/`. At cut time: rename
1212
`## [Unreleased]` to `## [X.Y.Z] - YYYY-MM-DD`, then run the release script.
1313

14-
## [Unreleased]
14+
## [0.2.109] - 2026-08-24
1515

1616
### Agent
1717

eslint.config.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ export default tseslint.config(
1212
"**/.scratch/**",
1313
"scratch/**",
1414
"**/scratch/**",
15+
"tmp/**",
16+
"**/tmp/**",
17+
".claude/**",
18+
"**/.claude/**",
19+
".tmp/**",
20+
"**/.tmp/**",
1521
"node_modules/**",
1622
"**/node_modules/**",
1723
],

0 commit comments

Comments
 (0)