mirror of
https://github.com/ChrisSewell/TeamsLogoAdder.git
synced 2025-07-01 10:37:28 -04:00
52 lines
544 B
Plaintext
52 lines
544 B
Plaintext
# Ignore contents of input, logo, and output folders but keep the folders
|
|
input/*
|
|
logo/*
|
|
output/*
|
|
|
|
# Keep the folder structure by not ignoring .gitkeep files
|
|
!input/.gitkeep
|
|
!logo/.gitkeep
|
|
!output/.gitkeep
|
|
|
|
# Python
|
|
__pycache__/
|
|
*.py[cod]
|
|
*$py.class
|
|
*.so
|
|
.Python
|
|
build/
|
|
develop-eggs/
|
|
dist/
|
|
downloads/
|
|
eggs/
|
|
.eggs/
|
|
lib/
|
|
lib64/
|
|
parts/
|
|
sdist/
|
|
var/
|
|
wheels/
|
|
*.egg-info/
|
|
.installed.cfg
|
|
*.egg
|
|
MANIFEST
|
|
|
|
# IDEs
|
|
.vscode/
|
|
.idea/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# OS
|
|
.DS_Store
|
|
.DS_Store?
|
|
._*
|
|
.Spotlight-V100
|
|
.Trashes
|
|
ehthumbs.db
|
|
Thumbs.db
|
|
|
|
# Temporary files
|
|
*.tmp
|
|
*.temp |