29 lines
316 B
Text
29 lines
316 B
Text
# Files to ignore by git
|
|
|
|
# Back-up files
|
|
*~
|
|
|
|
# Don't include build related files.
|
|
/build/
|
|
/dist/
|
|
|
|
# Egg files
|
|
/dfDewey.egg-info
|
|
|
|
# Test files
|
|
.coverage
|
|
|
|
# Generic auto-generated build files
|
|
*.pyc
|
|
*.pyo
|
|
|
|
# Specific auto-generated build files
|
|
/__pycache__
|
|
|
|
# IDE files
|
|
.idea/
|
|
.vscode/
|
|
|
|
# Pipfile
|
|
Pipfile
|
|
Pipfile.lock
|