-
Notifications
You must be signed in to change notification settings - Fork 2
/
.pre-commit-config.yaml
67 lines (58 loc) · 1.39 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
default_language_version:
python: python3.9
repos:
- repo: https://github.com/pycqa/isort
rev: 5.10.1
hooks:
- id: isort
args: ["--profile", "black"]
- repo: https://github.com/myint/autoflake
rev: v1.4
hooks:
- id: autoflake
args: [
--in-place,
--remove-unused-variables,
--remove-all-unused-imports,
]
- repo: https://github.com/psf/black
rev: 22.6.0
hooks:
- id: black
language_version: python3.9
- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.942
hooks:
- id: mypy
- repo: https://github.com/pycqa/pydocstyle
rev: 4.0.0
hooks:
- id: pydocstyle
args: ['--ignore=D213,D203,D204,D416']
exclude: "minirt_converter/__init__.py"
- repo: local
hooks:
- id: pycodestyle
name: pycodestyle
entry: pycodestyle
language: system
args: [
'--ignore=E722,E126',
'--max-line-length=80',
'--exclude=*init*'
]
files: \.py$
- repo: https://github.com/PyCQA/bandit
rev: 1.7.4
hooks:
- id: bandit
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.2.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: requirements-txt-fixer
- id: check-docstring-first
- id: check-added-large-files
- id: check-yaml
args: [--allow-multiple-documents]