Codebase list python-webargs / 4921c8fc-6386-49a9-9e8c-20894cfe1c41/main .pre-commit-config.yaml
4921c8fc-6386-49a9-9e8c-20894cfe1c41/main

Tree @4921c8fc-6386-49a9-9e8c-20894cfe1c41/main (Download .tar.gz)

.pre-commit-config.yaml @4921c8fc-6386-49a9-9e8c-20894cfe1c41/mainraw · history · blame

repos:
- repo: https://github.com/asottile/pyupgrade
  rev: v2.11.0
  hooks:
  - id: pyupgrade
    args: ["--py36-plus"]
- repo: https://github.com/psf/black
  rev: 20.8b1
  hooks:
  - id: black
- repo: https://gitlab.com/pycqa/flake8
  rev: 3.9.0
  hooks:
  - id: flake8
    additional_dependencies: [flake8-bugbear==21.4.3]
- repo: https://github.com/asottile/blacken-docs
  rev: v1.10.0
  hooks:
  - id: blacken-docs
    additional_dependencies: [black==20.8b1]
    args: ["--target-version", "py35"]
- repo: https://github.com/pre-commit/mirrors-mypy
  rev: v0.812
  hooks:
  - id: mypy
    language_version: python3
    files: ^src/webargs/
    additional_dependencies: ["marshmallow>=3,<4"]