80 lines
776 B
Plaintext
80 lines
776 B
Plaintext
*
|
|
!*/
|
|
!*.*
|
|
# Ignore compiled binaries
|
|
*.exe
|
|
*.dll
|
|
*.so
|
|
*.dylib
|
|
*.rar
|
|
.vs/
|
|
# Ignore build output
|
|
build/
|
|
dist/
|
|
target/
|
|
bin/
|
|
obj/
|
|
x64/
|
|
x86/
|
|
lib/
|
|
|
|
# Ignore IDE and editor files
|
|
.idea/
|
|
.vscode/
|
|
*.sublime-project
|
|
*.sublime-workspace
|
|
|
|
# Ignore system files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Ignore logs and temporary files
|
|
*.log
|
|
*.tmp
|
|
|
|
# Ignore package manager directories
|
|
node_modules/
|
|
vendor/
|
|
|
|
# Ignore sensitive or environment-specific information
|
|
.env
|
|
secrets/
|
|
|
|
# Ignore user-specific files
|
|
*.bak
|
|
*.swp
|
|
*.swo
|
|
|
|
# Ignore generated documentation
|
|
docs/
|
|
|
|
# Ignore database files
|
|
*.db
|
|
*.sqlite
|
|
|
|
# Ignore compiled code
|
|
*.class
|
|
*.jar
|
|
*.war
|
|
*.ear
|
|
|
|
# Ignore OS-specific files
|
|
.DS_Store
|
|
Thumbs.db
|
|
|
|
# Ignore backup files
|
|
*~
|
|
*.bak
|
|
__pycache__/
|
|
|
|
*.obj
|
|
*.lst
|
|
*.ilk
|
|
*.pdb
|
|
*.bin
|
|
*.out
|
|
*.gcov
|
|
*.gcno
|
|
*.gcda
|
|
|