forked from IABTechLab/fideslang
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
39 lines (34 loc) · 804 Bytes
/
.pre-commit-config.yaml
File metadata and controls
39 lines (34 loc) · 804 Bytes
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
minimum_pre_commit_version: "2"
repos:
- repo: local
hooks:
- id: docker
name: docker
entry: make build-local
files: "^src/"
types_or: [file, python]
language: system
- id: black
name: black
entry: make black
files: "^src/"
types_or: [file, python]
language: system
- id: mypy
name: mypy
entry: make mypy
files: "^src/"
types_or: [file, python]
language: system
- id: xenon
name: xenon
entry: make xenon
files: "^src/"
types_or: [file, python]
language: system
- id: pylint
name: pylint
entry: make pylint
files: "^src/"
types_or: [file, python]
language: system