chore: strengthen .gitignore for build artifacts
Add patterns to prevent accidental commit of: - build_er*.txt (error logs) - root.zig (generated root file) - l0_*.zig through l4_*.zig (generated layer files)
This commit is contained in:
parent
09ebab5d8b
commit
46a14846e0
|
|
@ -21,9 +21,16 @@ libqvl_ffi.a
|
||||||
# Build Error Logs
|
# Build Error Logs
|
||||||
build_err*
|
build_err*
|
||||||
build_errors.txt
|
build_errors.txt
|
||||||
|
build_er*.txt
|
||||||
|
|
||||||
# Random build artifacts
|
# Random build artifacts
|
||||||
root
|
root
|
||||||
|
root.zig
|
||||||
|
l0_*.zig
|
||||||
|
l1_*.zig
|
||||||
|
l2_*.zig
|
||||||
|
l3_*.zig
|
||||||
|
l4_*.zig
|
||||||
|
|
||||||
# Operational Reports & Stories
|
# Operational Reports & Stories
|
||||||
REPORTS/
|
REPORTS/
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue