File size: 457 Bytes
5ecde30 4afdea8 5ecde30 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 |
# Ignore compiled object files
*.o
*.ko
*.obj
*.elf
# Ignore executables
*.exe
*.out
*.app
# Ignore libraries
*.a
*.lib
# Ignore logs and temporary files
*.log
*.tmp
# Ignore build directories
/build
/dist
/node_modules
# Ignore IDE and editor specific files
.vscode/
.idea/
*.sublime-project
*.sublime-workspace
# Ignore system files
.DS_Store
Thumbs.db
# Ignore configuration files with sensitive information
config.ini
secrets.json
.env
.venv
/env |