Codebase list python-webargs / fresh-releases/main .pre-commit-config.yaml
fresh-releases/main

Tree @fresh-releases/main (Download .tar.gz)

.pre-commit-config.yaml @fresh-releases/mainraw · history · blame

repos:
- repo: https://github.com/asottile/pyupgrade
  rev: v2.34.0
  hooks:
  - id: pyupgrade
    args: ["--py37-plus"]
- repo: https://github.com/python-jsonschema/check-jsonschema
  rev: 0.16.2
  hooks:
    - id: check-github-workflows
    - id: check-readthedocs
- repo: https://github.com/psf/black
  rev: 22.6.0
  hooks:
  - id: black
- repo: https://github.com/pycqa/flake8
  rev: 4.0.1
  hooks:
  - id: flake8
    additional_dependencies: [flake8-bugbear==22.1.11]
- repo: https://github.com/asottile/blacken-docs
  rev: v1.12.1
  hooks:
  - id: blacken-docs
    additional_dependencies: [black==22.1.0]
    args: ["--target-version", "py37"]
- repo: https://github.com/pre-commit/mirrors-mypy
  rev: v0.961
  hooks:
  - id: mypy
    language_version: python3
    files: ^src/webargs/
    additional_dependencies: ["marshmallow>=3,<4", "packaging"]


# mypy runs under tox in GitHub Actions, skip it in pre-commit.ci
ci:
  skip: [mypy]