35 lines
804 B
YAML
35 lines
804 B
YAML
---
|
|
repos:
|
|
- repo: https://github.com/psf/black
|
|
rev: 19.10b0
|
|
hooks:
|
|
- id: black
|
|
language_version: python3.8
|
|
# override until resolved: https://github.com/ambv/black/issues/402
|
|
files: \.pyi?$
|
|
types: []
|
|
|
|
- repo: https://github.com/asottile/seed-isort-config
|
|
rev: v2.2.0
|
|
hooks:
|
|
- id: seed-isort-config
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-isort
|
|
rev: v4.3.21
|
|
hooks:
|
|
- id: isort
|
|
additional_dependencies: [toml]
|
|
|
|
- repo: https://gitlab.com/pycqa/flake8
|
|
rev: 3.8.3
|
|
hooks:
|
|
- id: flake8
|
|
language_version: python3.8
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v3.1.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
- id: end-of-file-fixer
|
|
- id: debug-statements
|