| default_language_version: | |
| python: python3 | |
| repos: | |
| - repo: https://github.com/pre-commit/pre-commit-hooks | |
| rev: v4.4.0 | |
| hooks: | |
| # list of supported hooks: https://pre-commit.com/hooks.html | |
| - id: trailing-whitespace | |
| - id: end-of-file-fixer | |
| - id: debug-statements | |
| - id: detect-private-key | |
| # python code formatting/linting | |
| - repo: https://github.com/astral-sh/ruff-pre-commit | |
| # Ruff version. | |
| rev: "v0.11.0" | |
| hooks: | |
| - id: ruff | |
| args: [--fix] | |
| # yaml formatting | |
| - repo: https://github.com/pre-commit/mirrors-prettier | |
| rev: v3.0.2 | |
| hooks: | |
| - id: prettier | |
| types: [yaml] | |