51 lines
573 B
Plaintext
51 lines
573 B
Plaintext
# Build artifacts
|
|
output/
|
|
cache/
|
|
target/
|
|
|
|
# Note: components/ directory contains git submodules and should be tracked
|
|
|
|
# Docker artifacts
|
|
.dockerignore
|
|
|
|
# Build logs and temporary files
|
|
*.log
|
|
*.tmp
|
|
.buildlog
|
|
|
|
# OS-specific files
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Editor/IDE files
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Kernel build artifacts
|
|
*.ko
|
|
*.o
|
|
*.mod.c
|
|
.tmp_versions/
|
|
modules.order
|
|
Module.symvers
|
|
|
|
# Alpine/Linux temporary files
|
|
.alpine-*
|
|
initramfs-*
|
|
|
|
# Backup files
|
|
*.bak
|
|
*.backup
|
|
*.orig
|
|
|
|
# Test artifacts
|
|
test-output/
|
|
test-cache/ |