-
Notifications
You must be signed in to change notification settings - Fork 32
/
.pre-commit-config.yaml
55 lines (54 loc) · 1.48 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-yaml
- id: check-toml
- id: check-merge-conflict
- id: check-added-large-files
- id: check-docstring-first
- id: check-vcs-permalinks
- id: check-json
- id: check-ast
- id: pretty-format-json
- id: end-of-file-fixer
- id: trailing-whitespace
- id: name-tests-test
args: [--pytest-test-first]
- id: fix-encoding-pragma
- id: detect-private-key
- id: debug-statements
- repo: https://github.com/PyCQA/docformatter
rev: v1.5.0
hooks:
- id: docformatter
args: [--in-place, --wrap-summaries=120, --wrap-descriptions=120]
- repo: https://github.com/psf/black
rev: 22.10.0
hooks:
- id: black
- repo: https://github.com/pycqa/pylint
rev: v2.15.6
hooks:
- id: pylint
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
hooks:
- id: flake8
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
name: isort (python)
entry: isort --profile=black
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.991
hooks:
- id: mypy
args: [--follow-imports=silent, --ignore-missing-imports, --allow-redefinition]
additional_dependencies: [types-requests]
- repo: https://github.com/pycqa/pydocstyle
rev: 6.1.1
hooks:
- id: pydocstyle
additional_dependencies: ["toml"]