Update .gitignore
Update the .gitignore file and organize it into sections, grouping together the files and folders that should be ignored in the project.
This commit is contained in:
parent
a438acdbbd
commit
fcc35ff277
|
|
@ -1,9 +1,38 @@
|
||||||
env/
|
# Python
|
||||||
__pycache__/
|
__pycache__/
|
||||||
|
**pycache**/
|
||||||
|
*.py[cod]
|
||||||
|
*.so
|
||||||
|
*.egg-info/
|
||||||
|
build/
|
||||||
|
dist/
|
||||||
|
|
||||||
|
# Virtual environments
|
||||||
|
.env
|
||||||
|
env/
|
||||||
|
.venv
|
||||||
|
venv/
|
||||||
|
|
||||||
|
# Testing
|
||||||
|
.pytest_cache/
|
||||||
|
.coverage
|
||||||
|
htmlcov/
|
||||||
|
|
||||||
|
# IDE
|
||||||
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
|
||||||
|
# OS
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
|
||||||
|
# Logs
|
||||||
|
*.log
|
||||||
|
|
||||||
|
# Data files
|
||||||
*.csv
|
*.csv
|
||||||
|
|
||||||
|
# Project specific
|
||||||
src/
|
src/
|
||||||
eval_results/
|
eval_results/
|
||||||
eval_data/
|
eval_data/
|
||||||
*.egg-info/
|
|
||||||
.env
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue