-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
63 lines (59 loc) · 1.34 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
exclude: tests/.*_samples
repos:
- hooks:
- id: check-yaml
- id: check-ast
- id: check-docstring-first
- id: check-merge-conflict
- id: trailing-whitespace
- id: mixed-line-ending
- id: fix-byte-order-marker
- id: check-case-conflict
- id: check-json
- id: end-of-file-fixer
repo: https://github.com/pre-commit/pre-commit-hooks
rev: v5.0.0
- hooks:
- args:
- --in-place
- --expand-star-imports
- --remove-all-unused-imports
- --ignore-init-module-imports
id: autoflake
repo: https://github.com/myint/autoflake
rev: v2.3.1
- repo: https://github.com/asottile/reorder-python-imports
rev: v3.14.0
hooks:
- args:
- --py37-plus
id: reorder-python-imports
- hooks:
- args:
- --py37-plus
id: pyupgrade
repo: https://github.com/asottile/pyupgrade
rev: v3.19.0
- hooks:
- id: black
repo: https://github.com/psf/black
rev: 24.10.0
- hooks:
- id: blacken-docs
repo: https://github.com/asottile/blacken-docs
rev: 1.19.1
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
rev: v2.14.0
hooks:
- id: pretty-format-yaml
args: [--autofix, --indent, '2']
- hooks:
- id: blackdoc
repo: https://github.com/keewis/blackdoc
rev: v0.3.9
- hooks:
- id: commitizen
stages:
- commit-msg
repo: https://github.com/commitizen-tools/commitizen
rev: v4.0.0