53 lines
623 B
Plaintext
53 lines
623 B
Plaintext
# Ignore common Python-related files and directories
|
|
__pycache__
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
|
|
# Ignore development and version control files
|
|
*.log
|
|
*.swp
|
|
.git
|
|
.vscode
|
|
.idea
|
|
__init__.py
|
|
|
|
# Ignore virtual environment and dependencies
|
|
venv/
|
|
env/
|
|
*.egg-info/
|
|
*.egg
|
|
*.log
|
|
|
|
# Ignore other temporary and build files
|
|
*.bak
|
|
*.bak1
|
|
*.bak2
|
|
*.swp
|
|
*.swo
|
|
*.swn
|
|
*.un~
|
|
*.swm
|
|
*.swl
|
|
*.pyc
|
|
*.pyo
|
|
*.bak
|
|
*.bak1
|
|
*.bak2
|
|
*.orig
|
|
*.rej
|
|
*.log
|
|
*.backup
|
|
*.tmp
|
|
*.tmp.*
|
|
*.diff
|
|
*.cache
|
|
*.css.map
|
|
*.css.map.*
|
|
|
|
# Ignore any specific files or directories your project generates
|
|
# Add lines for any other project-specific files or directories to ignore
|
|
.env
|
|
.env*
|
|
*.env
|