Codebase list python-webargs / 16e17758-8d7e-4217-90ab-0febc23d8999/main .pre-commit-config.yaml
16e17758-8d7e-4217-90ab-0febc23d8999/main

Tree @16e17758-8d7e-4217-90ab-0febc23d8999/main (Download .tar.gz)

.pre-commit-config.yaml @16e17758-8d7e-4217-90ab-0febc23d8999/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"]