eggplants/ghcr-badge

View on GitHub
.pre-commit-config.yaml

Summary

Maintainability
Test Coverage
ci:
  autoupdate_schedule: monthly
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
  rev: v4.6.0
  hooks:
  - id: check-added-large-files
    args: [--maxkb=2000]
  - id: check-ast
  - id: check-case-conflict
  - id: check-executables-have-shebangs
  - id: check-merge-conflict
  - id: check-symlinks
  - id: check-toml
  - id: check-yaml
  - id: debug-statements
  - id: destroyed-symlinks
  - id: end-of-file-fixer
    files: \.(py|sh|rst|yml|yaml)$
  - id: mixed-line-ending
  - id: trailing-whitespace
    files: \.(py|sh|rst|yml|yaml)$
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
  rev: v2.14.0
  hooks:
  - id: pretty-format-yaml
    args: [--autofix, --indent, '2']
- repo: https://github.com/tox-dev/pyproject-fmt
  rev: 2.2.1
  hooks:
  - id: pyproject-fmt
- repo: https://github.com/psf/black
  rev: 24.8.0
  hooks:
  - id: black
- repo: https://github.com/Riverside-Healthcare/djLint
  rev: v1.35.2
  hooks:
  - id: djlint-reformat-jinja
- repo: https://github.com/astral-sh/ruff-pre-commit
  rev: v0.6.3
  hooks:
  - id: ruff
    args: [--fix]
- repo: https://github.com/pre-commit/mirrors-mypy
  rev: v1.11.2
  hooks:
  - id: mypy
    additional_dependencies:
    - flask
    - natsort
    - types-requests
    - types-humanfriendly
    - types-waitress
    - typing-extensions
    files: ^ghcr_badge/
    args: [--strict]
- repo: https://github.com/igorshubovych/markdownlint-cli
  rev: v0.41.0
  hooks:
  - id: markdownlint
    exclude: ^.github/PULL_REQUEST_TEMPLATE.md
    args: [--disable=MD013]