-
Notifications
You must be signed in to change notification settings - Fork 2
/
.pre-commit-config.yaml
39 lines (39 loc) · 1.1 KB
/
.pre-commit-config.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
exclude: \.svg$
- repo: local
# Using local repos because these won't work for me from remote repo -EJ
# They're also more convenient because we install them via requirements.dev.txt
# and they are then available on the command line as well as in pre-commit.
hooks:
- id: isort
name: isort
entry: isort
language: system
types: [python]
stages: [pre-commit]
- id: black
name: black
entry: black
language: system
types: [python]
stages: [pre-commit]
# We do flake8 last since black fixes a lot of the stuff it complains about
- repo: https://github.com/pycqa/flake8
rev: 7.1.0
hooks:
- id: flake8
# We do mypy last because it's the slowest of them all
- repo: local
hooks:
- id: mypy
name: mypy
entry: mypy
language: system
types: [python]
stages: [pre-commit]