-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.pre-commit-config.yaml
46 lines (46 loc) · 1.16 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
40
41
42
43
44
45
46
repos:
- repo: https://github.com/psf/black
rev: 22.6.0
hooks:
- id: black
args:
- --line-length
- "120"
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
name: isort (python)
args:
- --profile
- black
- --filter-files
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v0.961'
hooks:
- id: mypy
name: mypy (cfdibills)
args: [--ignore-missing-imports, --pretty]
files: cfdibills/
additional_dependencies: [types-requests==2.28.0]
- id: mypy
name: mypy (tests)
args: [--ignore-missing-imports, --pretty]
files: tests/
additional_dependencies: [types-requests==2.28.0]
- repo: https://github.com/MartinThoma/check-pip-compile
rev: 0.1.1
hooks:
- id: check-pip-compile
name: did pip-compile?
files: requirements.in
args:
- requirements.in
- repo: local
hooks:
- id: check-setup
name: setup_check.py
entry: python setup_check.py
language: system
types: [python]
always_run: true