/ .gitignore
.gitignore
1 /target 2 /crates/*/target 3 /build/artifacts 4 /build/*.tar.gz 5 /.pre-commit-config.yaml 6 /.direnv/ 7 /result 8 /fuzz/target 9 /fuzz/afl/target 10 /fuzz/artifacts 11 /fuzz/Cargo.lock 12 /fuzz/coverage 13 *.profdata 14 *.profraw 15 16 # Node.js (subprojects) 17 node_modules/ 18 .npm/ 19 20 # IDE 21 .idea/ 22 .vscode/ 23 *.swp 24 *.swo 25 26 # OS 27 .DS_Store 28 Thumbs.db 29 30 # Backup files 31 *.backup 32 *.bak