-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy path.pre-commit-config.yaml
More file actions
181 lines (163 loc) · 4 KB
/
Copy path.pre-commit-config.yaml
File metadata and controls
181 lines (163 loc) · 4 KB
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
default_install_hook_types: [pre-commit, pre-push, commit-msg]
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: check-added-large-files
- id: check-case-conflict
- id: check-executables-have-shebangs
- id: check-merge-conflict
- id: check-shebang-scripts-are-executable
- id: check-symlinks
- id: check-toml
- id: check-vcs-permalinks
- id: check-yaml
- id: end-of-file-fixer
- id: file-contents-sorter
files: spelling_private_dict\.txt$
- id: trailing-whitespace
exclude: ^src/mock_vws/resources/
- repo: local
hooks:
- id: custom-linters
name: custom-linters
entry: pytest ci/custom_linters.py
stages: [push]
language: system
types_or: [yaml, python]
pass_filenames: false
- id: actionlint
name: actionlint
entry: actionlint
language: system
pass_filenames: false
types_or: [yaml]
- id: mypy
name: mypy
stages: [push]
entry: mypy .
language: system
types_or: [python, toml]
pass_filenames: false
- id: check-manifest
name: check-manifest
stages: [push]
entry: check-manifest .
language: system
pass_filenames: false
- id: pyright
name: pyright
stages: [push]
entry: pyright .
language: system
types_or: [python, toml]
pass_filenames: false
- id: pyright-verifytypes
name: pyright-verifytypes
stages: [push]
entry: pyright --verifytypes mock_vws
language: system
pass_filenames: false
types_or: [python]
- id: vulture
name: vulture
entry: vulture --min-confidence 100 --exclude .eggs
language: system
types_or: [python]
- id: pyroma
name: pyroma
entry: pyroma --min 10 .
language: system
pass_filenames: false
types_or: [toml]
- id: deptry
name: deptry
entry: deptry src/
language: system
pass_filenames: false
- id: pylint
name: pylint
entry: pylint *.py src/ tests/ docs/ ci/
language: system
stages: [manual]
pass_filenames: false
- id: hadolint-docker
name: Lint Dockerfiles
description: Runs hadolint Docker image to lint Dockerfiles
language: docker_image
types_or: [dockerfile]
stages: [manual] # Requires Docker to be running
# We choose not to use a Python wrapper or alternative to hadolint as none
# appear to be well maintained, and they require more setup than we would
# want.
entry: ghcr.io/hadolint/hadolint hadolint
- id: ruff-check-fix
name: Ruff check fix
entry: ruff check --fix
language: system
types_or: [python]
- id: ruff-format-fix
name: Ruff format
entry: ruff format
language: system
types_or: [python]
- id: doc8
name: doc8
entry: doc8
language: system
types_or: [rst]
- id: interrogate
name: interrogate
entry: interrogate src/ tests/ ci/
language: system
types_or: [python]
- id: pyproject-fmt-fix
name: pyproject-fmt
entry: pyproject-fmt
language: system
types_or: [toml]
files: pyproject.toml
- id: linkcheck
name: linkcheck
entry: make -C docs/ linkcheck SPHINXOPTS=-W
language: system
types_or: [rst]
stages: [manual]
pass_filenames: false
- id: spelling
name: spelling
entry: make -C docs/ spelling SPHINXOPTS=-W
language: system
types_or: [rst]
stages: [manual]
pass_filenames: false
- id: docs
name: Build Documentation
entry: make docs
language: system
stages: [manual]
pass_filenames: false
# We use system Python, with required dependencies specified in pyproject.toml.
# We therefore cannot use those dependencies in pre-commit CI.
ci:
skip:
- custom-linters
- actionlint
- mypy
- check-manifest
- pyright
- pyright-verifytypes
- vulture
- pyroma
- deptry
- pylint
- ruff-check-fix
- ruff-format-fix
- doc8
- interrogate
- pyproject-fmt-fix
- linkcheck
- spelling
- docs