Bradlee Speice
9f5caa76f0
Would rather have async I/O, but there are too many issues with the data model of other APIs.
23 lines
515 B
YAML
23 lines
515 B
YAML
repos:
|
|
- repo: https://github.com/psf/black
|
|
rev: 21.6b0
|
|
hooks:
|
|
- id: black
|
|
args: ["--line-length=120"]
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: 5.9.1
|
|
hooks:
|
|
- id: isort
|
|
args: ["--profile black"]
|
|
- repo: https://github.com/pycqa/pylint
|
|
rev: v2.9.3
|
|
hooks:
|
|
- id: pylint
|
|
args: ["--ignore-imports=yes"]
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v0.910
|
|
hooks:
|
|
- id: mypy
|
|
args: ["--strict", "--ignore-missing-imports"]
|
|
additional_dependencies: ["types-PyYAML"]
|