chore: Update .gitignore to include additional Python, R, and temporary file patterns
This commit is contained in:
parent
8bc151ee4c
commit
257e0bc0c0
20
.gitignore
vendored
20
.gitignore
vendored
|
|
@ -9,6 +9,14 @@
|
|||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
*.py[cod]
|
||||
*.py[cod]
|
||||
myenv/myenv/
|
||||
pip-wheel-metadata/
|
||||
dist/
|
||||
*.egg-info/
|
||||
*.egg/*.egg/
|
||||
.ipynb_checkpoints
|
||||
|
||||
# R Output Files
|
||||
*.Rout
|
||||
|
|
@ -16,6 +24,7 @@ __pycache__/
|
|||
*.RData
|
||||
*.Rdata
|
||||
.Rproj.user
|
||||
.Rprofile
|
||||
Rplots.pdf
|
||||
*.pdf
|
||||
|
||||
|
|
@ -48,15 +57,24 @@ reports/
|
|||
# Experiment Outputs (temporary plots, analysis artifacts)
|
||||
python_app/harvest_detection_experiments/*/plots/
|
||||
python_app/harvest_detection_experiments/*/*.ipynb_checkpoints/
|
||||
CI_report_dashboard_planet_files/
|
||||
|
||||
# Cache Files
|
||||
rosm.cache/
|
||||
*.cache
|
||||
renv/cache/
|
||||
|
||||
# Logs
|
||||
*.log
|
||||
package_manager.log
|
||||
|
||||
# Temporary Files
|
||||
*.tmp
|
||||
*.save
|
||||
*.bak
|
||||
*.swp
|
||||
*.swo
|
||||
package_manager.log
|
||||
|
||||
# Laravel Storage (contains user data and outputs)
|
||||
laravel_app/storage/app/*/Data/
|
||||
laravel_app/storage/app/*/reports/
|
||||
|
|
|
|||
Loading…
Reference in a new issue