Skip to content

Commit 3a17b3f

Browse files
Testclaude
andcommitted
chore: fix gitignore to exclude build artifacts in subdirectories
Changed /target/ and /_build/ to target/ and _build/ (without leading slash) so they match build directories anywhere in the repo, not just at root level. This properly ignores: - impl/elixir/_build/ - impl/rust-cli/target/ Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent b8d6111 commit 3a17b3f

1 file changed

Lines changed: 5 additions & 5 deletions

File tree

.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ Thumbs.db
1111
.vscode/
1212

1313
# Build
14-
/target/
15-
/_build/
16-
/build/
17-
/dist/
18-
/out/
14+
target/
15+
_build/
16+
build/
17+
dist/
18+
out/
1919

2020
# Dependencies
2121
/node_modules/

0 commit comments

Comments
 (0)