-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy path.pre-commit-config.yaml
50 lines (44 loc) · 1.17 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
exclude: ^docs/
- repo: https://github.com/adrienverge/yamllint.git
rev: v1.35.1
hooks:
- id: yamllint
args: [-c=.yamllint.yml]
- repo: https://github.com/asottile/pyupgrade
rev: v3.16.0
hooks:
- id: pyupgrade
args: [--py3-plus]
- repo: https://github.com/google/yapf
rev: v0.40.2
hooks:
- id: yapf
name: Format code
additional_dependencies: [toml]
- repo: https://github.com/pycqa/isort
rev: 5.13.2
hooks:
- id: isort
name: Sort imports
args: [--line-width, "120", --profile, black]
- repo: https://github.com/PyCQA/docformatter
rev: eb1df34
hooks:
- id: docformatter
name: Format docstring
additional_dependencies: [tomli]
args: [--config, pyproject.toml]
- repo: https://github.com/executablebooks/mdformat
rev: 0.7.17
hooks:
- id: mdformat
name: Format markdown
additional_dependencies:
- mdformat-gfm
- mdformat-tables