43 lines
1,017 B
YAML
43 lines
1,017 B
YAML
repos:
|
|
- repo: https://github.com/asottile/pyupgrade
|
|
rev: v1.25.2
|
|
hooks:
|
|
- id: pyupgrade
|
|
args: ["--py3-plus"]
|
|
|
|
- repo: https://github.com/psf/black
|
|
rev: 19.10b0
|
|
hooks:
|
|
- id: black
|
|
args: ["--target-version", "py35"]
|
|
# override until resolved: https://github.com/psf/black/issues/402
|
|
files: \.pyi?$
|
|
types: []
|
|
|
|
- repo: https://gitlab.com/pycqa/flake8
|
|
rev: 3.7.9
|
|
hooks:
|
|
- id: flake8
|
|
additional_dependencies: [flake8-2020, flake8-implicit-str-concat]
|
|
|
|
- repo: https://github.com/asottile/seed-isort-config
|
|
rev: v1.9.4
|
|
hooks:
|
|
- id: seed-isort-config
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-isort
|
|
rev: v4.3.21
|
|
hooks:
|
|
- id: isort
|
|
|
|
- repo: https://github.com/pre-commit/pygrep-hooks
|
|
rev: v1.4.3
|
|
hooks:
|
|
- id: python-check-blanket-noqa
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v2.4.0
|
|
hooks:
|
|
- id: check-merge-conflict
|
|
- id: check-yaml
|