forked from Vaelor/python-mattermost-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.pre-commit-config.yaml
87 lines (77 loc) · 1.91 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
default_language_version:
python: python3.10
repos:
- repo: https://github.com/pycqa/isort
rev: 5.12.0
hooks:
- id: isort
args: ["--profile", "black"]
files: \.py$
- repo: https://github.com/myint/autoflake
rev: v2.1.1
hooks:
- id: autoflake
args: [
--ignore-init-module-imports,
--in-place,
--remove-unused-variables,
--remove-all-unused-imports,
]
- repo: https://github.com/psf/black
rev: 23.3.0
hooks:
- id: black
args: [--config=./pyproject.toml]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v1.3.0
hooks:
- id: mypy
additional_dependencies: [
types-requests,
]
args: [--config-file=./pyproject.toml]
exclude: "examples"
- repo: https://github.com/pycqa/pydocstyle
rev: 6.3.0
hooks:
- id: pydocstyle
additional_dependencies: ["tomli"]
args: ["--ignore=D105,D107,D213,D203,D204,D416"]
exclude: "scrapermost/__init__.py"
- repo: local
hooks:
- id: pycodestyle
name: pycodestyle
entry: pycodestyle
language: system
args: [
"--exclude=*init*",
"--ignore=E722,E126,W503",
"--max-line-length=79"
]
files: \.py$
- repo: https://github.com/PyCQA/bandit
rev: 1.7.5
hooks:
- id: bandit
args: ["--skip=B105,B324,B501"]
- repo: https://github.com/executablebooks/mdformat
rev: 0.7.16
hooks:
- id: mdformat
args: ["--number"]
exclude: .gitlab
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: trailing-whitespace
exclude: ^.gitlab/
- id: end-of-file-fixer
exclude: ^.gitlab/
- id: check-yaml
args: [--allow-multiple-documents]
- id: check-added-large-files
exclude: docs
- id: detect-private-key
- id: no-commit-to-branch
args: ["--branch", "main"]