18 строки
490 B
YAML
18 строки
490 B
YAML
repos:
|
|
- repo: https://github.com/ambv/black
|
|
rev: 22.3.0
|
|
hooks:
|
|
- id: black
|
|
language_version: python3
|
|
- repo: https://gitlab.com/pycqa/flake8
|
|
rev: 3.9.1 # Use the ref you want to point at
|
|
hooks:
|
|
- id: flake8
|
|
args: ['--config=.flake8']
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v0.991
|
|
hooks:
|
|
- id: mypy
|
|
files: v3_async_wip/ # for now only the new v3 files have typings
|
|
exclude: v3_async_wip/tests
|