30 lines
229 B
Plaintext
30 lines
229 B
Plaintext
# Git
|
|
.git
|
|
.gitignore
|
|
|
|
# Build artifacts (these will be created during build)
|
|
builds/
|
|
*.o
|
|
*.obj
|
|
*.a
|
|
*.lib
|
|
*.so
|
|
*.dll
|
|
|
|
# Documentation
|
|
docs/
|
|
*.md
|
|
LICENSE*
|
|
|
|
# Temporary files
|
|
*.log
|
|
*.tmp
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# IDE
|
|
.vscode/
|
|
.idea/
|
|
*.iml
|