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__/
|
__pycache__/
|
||||||
*.pyc
|
*.pyc
|
||||||
*.pyo
|
*.pyo
|
||||||
|
*.py[cod]
|
||||||
|
*.py[cod]
|
||||||
|
myenv/myenv/
|
||||||
|
pip-wheel-metadata/
|
||||||
|
dist/
|
||||||
|
*.egg-info/
|
||||||
|
*.egg/*.egg/
|
||||||
|
.ipynb_checkpoints
|
||||||
|
|
||||||
# R Output Files
|
# R Output Files
|
||||||
*.Rout
|
*.Rout
|
||||||
|
|
@ -16,6 +24,7 @@ __pycache__/
|
||||||
*.RData
|
*.RData
|
||||||
*.Rdata
|
*.Rdata
|
||||||
.Rproj.user
|
.Rproj.user
|
||||||
|
.Rprofile
|
||||||
Rplots.pdf
|
Rplots.pdf
|
||||||
*.pdf
|
*.pdf
|
||||||
|
|
||||||
|
|
@ -48,15 +57,24 @@ reports/
|
||||||
# Experiment Outputs (temporary plots, analysis artifacts)
|
# Experiment Outputs (temporary plots, analysis artifacts)
|
||||||
python_app/harvest_detection_experiments/*/plots/
|
python_app/harvest_detection_experiments/*/plots/
|
||||||
python_app/harvest_detection_experiments/*/*.ipynb_checkpoints/
|
python_app/harvest_detection_experiments/*/*.ipynb_checkpoints/
|
||||||
|
CI_report_dashboard_planet_files/
|
||||||
|
|
||||||
# Cache Files
|
# Cache Files
|
||||||
rosm.cache/
|
rosm.cache/
|
||||||
*.cache
|
renv/cache/
|
||||||
|
|
||||||
# Logs
|
# Logs
|
||||||
*.log
|
*.log
|
||||||
package_manager.log
|
package_manager.log
|
||||||
|
|
||||||
|
# Temporary Files
|
||||||
|
*.tmp
|
||||||
|
*.save
|
||||||
|
*.bak
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
package_manager.log
|
||||||
|
|
||||||
# Laravel Storage (contains user data and outputs)
|
# Laravel Storage (contains user data and outputs)
|
||||||
laravel_app/storage/app/*/Data/
|
laravel_app/storage/app/*/Data/
|
||||||
laravel_app/storage/app/*/reports/
|
laravel_app/storage/app/*/reports/
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue