diff options
| author | Martin Guzman <55927935+brockar@users.noreply.github.com> | 2025-10-28 18:29:58 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-28 18:29:58 -0300 |
| commit | dad4a040a85a4b2f5a47fb3f623c6818b924ff79 (patch) | |
| tree | 7894d6e167438cdc4705a02c16eeae3f99c10b84 /.gitignore | |
| parent | 53fe242ffdddf74bf13e32999027053ee4614b20 (diff) | |
| parent | 0536a3a6f61cf24ac46ff74b49dc27d816a898e4 (diff) | |
Merge pull request #854 from prabinpanta0/development
Weather System Integration Improvements
Diffstat (limited to '.gitignore')
| -rw-r--r-- | .gitignore | 40 |
1 files changed, 40 insertions, 0 deletions
@@ -1,3 +1,43 @@ WARP.md .warp.md result + +# Python artifacts +__pycache__/ +*.py[cod] +*.pyo +*.pyd +*.so +*.egg +*.egg-info/ +.eggs/ +dist/ +build/ +eggs/ +pip-wheel-metadata/ + +# Virtual environments +.venv/ +venv/ +env/ +ENV/ +.env + +# Testing and coverage +.pytest_cache/ +.coverage +.cache/ +.tox/ +htmlcov/ + +# Type checking and linting +.mypy_cache/ +.pytype/ +.flake8 +.ruff_cache/ + +# IDE and editor directories +.idea/ +.vscode/ +*.swp +*.swo |
