-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.pre-commit-config.yaml
98 lines (88 loc) · 1.95 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
types: [text]
- id: end-of-file-fixer
types: [text]
- repo: local
hooks:
- id: cargo-fmt
name: cargo-fmt
stages:
- commit
entry: cargo fmt
language: system
types: [rust]
args:
- "--"
- id: cargo-fmt-check
name: cargo-fmt-check
stages:
- manual
entry: cargo fmt --check
language: system
types: [rust]
args:
- "--"
- id: cargo-check
name: cargo-check
entry: cargo check
language: system
types: [rust]
pass_filenames: false
- id: clippy
name: clippy
entry: cargo clippy
language: system
args:
- "--"
- "-D"
- "warnings"
types: [rust]
pass_filenames: false
- repo: https://github.com/psf/black
rev: 23.3.0
hooks:
- id: black
stages:
- commit
types: [python]
- id: black
name: black-check
args:
- --check
- --diff
stages:
- manual
types: [python]
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
hooks:
- id: flake8
stages:
- commit
- manual
additional_dependencies: [flake8-bugbear]
types: [python]
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
stages:
- commit
types: [python]
- id: isort
name: isort-check
args:
- --check-only
stages:
- manual
types: [python]
- repo: https://github.com/jendrikseipp/vulture
rev: 'v2.11'
hooks:
- id: vulture