39 lines
422 B
Plaintext
39 lines
422 B
Plaintext
# Ignore all files by default
|
|
*
|
|
|
|
# Whitelist specific files to track
|
|
!time_tracker.py
|
|
|
|
# Keep this gitignore file
|
|
!.gitignore
|
|
|
|
# Ignore common Python artifacts
|
|
__pycache__/
|
|
*.pyc
|
|
*.pyo
|
|
*.pyd
|
|
.Python
|
|
*.so
|
|
|
|
# Ignore virtual environments
|
|
venv/
|
|
env/
|
|
ENV/
|
|
|
|
# Ignore IDE files
|
|
.vscode/
|
|
*.swp
|
|
*.swo
|
|
*~
|
|
|
|
# Ignore temp files
|
|
*.tmp
|
|
*.bak
|
|
|
|
# Ignore log files
|
|
*.log
|
|
|
|
# Ignore configuration and data files
|
|
*.json
|
|
*.csv
|
|
!time_tracker.py |