Spaces:
Sleeping
Sleeping
File size: 597 Bytes
f2a2544 |
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 41 42 43 44 45 46 47 48 49 50 51 52 53 |
# Ignore Python cache files
**/__pycache__
# Ignore compiled Python files
*.pyc
# Ignore editor-specific files
.vscode/
.idea/
# Ignore operating system files
.DS_Store
Thumbs.db
# Ignore log files
*.log
# Ignore temporary and cache files
*.tmp
*.cache
# Ignore build artifacts
/build/
/dist/
# Ignore virtual environment files
/venv/
/.venv/
# Ignore package manager files
/node_modules/
/yarn.lock
/package-lock.json
# Ignore database files
*.db
*.sqlite
# Ignore secret files
*.secret
# Ignore compiled binaries
*.exe
*.dll
*.so
*.dylib
# Ignore backup files
*.bak
*.swp
*.swo
*.~*
|