| 1 | repos: |
| 2 | - repo: https://github.com/astral-sh/ruff-pre-commit |
| 3 | rev: v0.6.9 |
| 4 | hooks: |
| 5 | - id: ruff |
| 6 | args: [--fix] |
| 7 | |
| 8 | - repo: https://github.com/gitleaks/gitleaks |
| 9 | rev: v8.18.4 |
| 10 | hooks: |
| 11 | - id: gitleaks |
| 12 | |
| 13 | - repo: https://github.com/PyCQA/bandit |
| 14 | rev: 1.7.10 |
| 15 | hooks: |
| 16 | - id: bandit |
| 17 | args: ["-c", "pyproject.toml"] |
| 18 | additional_dependencies: ["bandit[toml]"] |