Files
samiandClaude Sonnet 5 57b06ea5b1 pkg: ignore libFuzzer crash artifacts
libFuzzer writes crash-* / oom-* / leak-* / timeout-* into CWD on a find and
each holds the crashing input verbatim. None were ignored; CORE caught two by
hand before committing. Prevention, not cleanup.

Co-Authored-By: Claude Sonnet 5 <[email protected]>
Claude-Session: https://claude.ai/code/session_0143aKiohmDiyefJBwHDJJqw
2026-09-10 14:58:10 +04:00

48 lines
658 B
Plaintext

# Build output
build/
build-*/
/out/
compile_commands.json
CMakeUserPresets.json
.cache/
.ccls-cache/
# Language / tooling
node_modules/
dist/
web-ext-artifacts/
.venv/
__pycache__/
*.pyc
# Compiled objects
*.o
*.so
*.a
# Editor / OS
.idea/
.vscode/
*.user
*.orig
*.swp
.DS_Store
# Profiling
perf.data*
callgrind.out.*
massif.out.*
# Runtime / logs / partial downloads
*.log
*.veloxpart
*.veloxpart.meta
# Fuzzing crash artifacts — libFuzzer writes these to CWD on a find and each holds the
# crashing input verbatim. Ignore so they are never committed by accident (CORE caught
# two by hand before this rule existed).
crash-*
oom-*
leak-*
timeout-*