1repos:
2  - repo: https://github.com/ambv/black
3    rev: 18.9b0
4    hooks:
5      - id: black
6        language_version: python3.7
7        # override until resolved: https://github.com/ambv/black/issues/402
8        files: \.pyi?$
9        types: []
10  - repo: https://github.com/asottile/seed-isort-config
11    rev: v1.5.0
12    hooks:
13      - id: seed-isort-config
14  - repo: https://github.com/pre-commit/mirrors-isort
15    rev: v4.3.4
16    hooks:
17      - id: isort
18        language_version: python3.7
19
20  - repo: https://github.com/pre-commit/pre-commit-hooks
21    rev: v2.0.0
22    hooks:
23      - id: trailing-whitespace
24      - id: end-of-file-fixer
25      - id: debug-statements
26      - id: flake8
27        language_version: python3.7
28