Files
skills/.gitignore
T
hmo e72b231df9 Remove large binary files and build outputs
- Remove .NET DLLs, fonts, media files >1MB
- Add large binary patterns to .gitignore
- Keep source code only
2026-04-26 19:32:58 +08:00

64 lines
507 B
Plaintext

# Bytecode
__pycache__/
*.py[cod]
*$py.class
*.pyo
*.pyd
# Virtual environments
venv/
.venv/
env/
ENV/
# Node
node_modules/
.npm
# OS
.DS_Store
Thumbs.db
# Test outputs and intermediates
output/
output/**/
# Pytest
.pytest_cache/
.coverage
htmlcov/
# IDE
.vscode/
.idea/
*.swp
*.swo
*.log
# Temp files
temp/
*.tmp
# Large binaries and build outputs
*.dll
*.exe
*.so
*.dylib
*.ttf
*.otf
*.png
*.jpg
*.jpeg
*.mp3
*.mp4
*.avi
*.mov
*.mkv
# Build outputs
bin/
obj/
build/
dotnet/**/bin/
dotnet/**/obj/