-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
58 lines (51 loc) · 1.2 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
47
48
49
50
51
52
53
54
55
56
57
58
repos:
- repo: local
hooks:
- id: prettier
name: prettier
entry: prettier --write --ignore-unknown
language: system
types:
- text
- id: black
name: black
entry: black
language: system
types:
- python
- id: isort
name: isort
entry: isort
language: system
types:
- python
- id: pyright
name: pyright
entry: ./lib/make/bin/pyright
language: system
types:
- python
- id: mypy
name: mypy
entry: mypy
language: system
types:
- python
- id: shellcheck
name: shellcheck
entry: shellcheck
language: system
types:
- shell
- id: pyright-verifytypes-lib
name: "pyright verify: lib"
language: system
entry: ./lib/make/bin/pyright-verifytypes lib
files: "^lib/"
pass_filenames: false
- id: pyright-verifytypes-spec
name: "pyright verify: spec"
language: system
entry: ./lib/make/bin/pyright-verifytypes spec
files: "^spec/"
pass_filenames: false