38 lines
326 B
Plaintext
38 lines
326 B
Plaintext
|
|
# Git
|
||
|
|
.git
|
||
|
|
.gitignore
|
||
|
|
|
||
|
|
# Python
|
||
|
|
__pycache__
|
||
|
|
*.pyc
|
||
|
|
*.pyo
|
||
|
|
*.egg-info
|
||
|
|
.pytest_cache
|
||
|
|
|
||
|
|
# IDE
|
||
|
|
.vscode
|
||
|
|
.idea
|
||
|
|
*.swp
|
||
|
|
*.swo
|
||
|
|
|
||
|
|
# Downloads (keep directory but not files)
|
||
|
|
downloads/*
|
||
|
|
!downloads/.gitkeep
|
||
|
|
|
||
|
|
# Logs
|
||
|
|
*.log
|
||
|
|
nohup.out
|
||
|
|
|
||
|
|
# HAR files (large)
|
||
|
|
*.har
|
||
|
|
|
||
|
|
# Test files
|
||
|
|
test_*.py
|
||
|
|
*.test.*
|
||
|
|
do_fix.py
|
||
|
|
do_fix.sh
|
||
|
|
|
||
|
|
# OS files
|
||
|
|
.DS_Store
|
||
|
|
Thumbs.db
|