27 lines
235 B
Plaintext
27 lines
235 B
Plaintext
# Ignore anything that starts with a dot
|
|
.*
|
|
|
|
# But don't ignore .gitignore itself
|
|
!.gitignore
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
*.egg
|
|
*.egg-info/
|
|
dist/
|
|
build/
|
|
eggs/
|
|
.eggs/
|
|
|
|
# IDE
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
Thumbs.db
|