# See https://pre-commit.com for more information # See https://pre-commit.com/hooks.html for more hooks repos: - repo: https://github.com/compilerla/conventional-pre-commit rev: v4.4.0 hooks: - id: conventional-pre-commit stages: [commit-msg] - repo: https://github.com/astral-sh/ruff-pre-commit rev: v0.15.12 hooks: - id: ruff args: [--fix] - repo: https://github.com/pycqa/isort rev: 9.0.0a3 hooks: - id: isort - repo: https://github.com/PyCQA/bandit rev: 1.9.4 hooks: - id: bandit args: - -c=pyproject.toml - --severity-level=medium - --confidence-level=medium additional_dependencies: ['bandit[toml]'] - repo: https://github.com/pre-commit/pre-commit-hooks rev: v6.0.0 hooks: - id: end-of-file-fixer - id: trailing-whitespace args: [--markdown-linebreak-ext=md]