-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
44 lines (43 loc) · 1001 Bytes
/
.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
default_language_version:
python: python3.9
repos:
- repo: https://github.com/pryorda/dockerfilelint-precommit-hooks
rev: v0.1.0
hooks:
- id: dockerfilelint
- repo: https://github.com/IamTheFij/docker-pre-commit
rev: v1.0.1
hooks:
- id: docker-compose-check
- repo: local
hooks:
- id: isort
name: isort
entry: isort
language: system
types: [python]
- id: black
name: black
entry: black
language: system
types: [python]
- id: mypy
name: mypy
entry: mypy
language: system
types: [python]
- id: relint
name: relint
entry: relint **
language: system
types: [python]
- id: flake8
name: flake8
entry: flake8
language: system
types: [python]
- id: pip-compile
name: pip-compile
entry: pip-compile
files: ^requirements.in$
language: system