diff options
| author | codecrafters-bot <hello@codecrafters.io> | 2026-02-19 14:44:46 +0000 |
|---|---|---|
| committer | codecrafters-bot <hello@codecrafters.io> | 2026-02-19 14:44:46 +0000 |
| commit | 8e499496cc52b2a5b1914c10c312559dc73f390d (patch) | |
| tree | 66babb94dcb59608b5a9784bb6857b37a9a3afb6 /.gitignore | |
| download | claude-zig-8e499496cc52b2a5b1914c10c312559dc73f390d.tar.gz claude-zig-8e499496cc52b2a5b1914c10c312559dc73f390d.zip | |
init [skip ci]
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b7bb740 --- /dev/null +++ b/.gitignore @@ -0,0 +1,18 @@ +# Zig build artifacts +main +zig-cache/ +.zig-cache/ +zig-out/ + +# Compiled binary output +bin/ +!bin/.gitkeep + +# Ignore any .o or .h files generated during build +*.o +*.h + +# Ignore OS and editor specific files +**/.DS_Store +*.swp +*~ |