26 lines
553 B
YAML
26 lines
553 B
YAML
|
repos:
|
||
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||
|
rev: v3.2.0
|
||
|
hooks:
|
||
|
- id: trailing-whitespace
|
||
|
- id: end-of-file-fixer
|
||
|
- id: check-yaml
|
||
|
- id: check-added-large-files
|
||
|
|
||
|
- repo: https://github.com/ambv/black
|
||
|
rev: 21.7b0
|
||
|
hooks:
|
||
|
- id: black
|
||
|
args: [--line-length=79]
|
||
|
language_version: python3.8
|
||
|
|
||
|
- repo: https://github.com/pycqa/flake8
|
||
|
rev: 3.7.9
|
||
|
hooks:
|
||
|
- id: flake8
|
||
|
|
||
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
||
|
rev: v0.910
|
||
|
hooks:
|
||
|
- id: mypy
|