git-bot-feedback 0.7.0

A library designed for CI tools that posts comments on a Pull Request.
Documentation
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
  rev: v6.0.0
  hooks:
    - id: trailing-whitespace
    - id: end-of-file-fixer
    - id: check-yaml
    - id: check-toml
    - id: check-added-large-files
    - id: mixed-line-ending
      args: ['--fix=lf']
- repo: https://github.com/streetsidesoftware/cspell-cli
  rev: v10.0.1
  hooks:
    - id: cspell
      exclude: CHANGELOG.md$
- repo: https://github.com/astral-sh/ruff-pre-commit
  # Ruff version.
  rev: v0.15.20
  hooks:
    # Run the linter.
    - id: ruff-check
    # Run the formatter.
    - id: ruff-format
- repo: https://github.com/pre-commit/mirrors-mypy
  rev: v2.1.0
  hooks:
    - id: mypy