forked from amiwrpremium/python-bitpin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.pre-commit-config.yaml
96 lines (87 loc) · 2.36 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
88
89
90
91
92
93
94
95
96
ci:
skip:
- pylint
- poetry-check
- poetry-lock
- poetry-export
- check-yaml
repos:
- repo: https://github.com/python-poetry/poetry
rev: '1.6.1'
hooks:
- id: poetry-check
- id: poetry-lock
args:
- --no-update
- id: poetry-export
name: export requirements.txt
args: [ "--format=requirements.txt", "--without-hashes", "-o", "requirements.txt" ]
- id: poetry-export
name: export requirements-dev.txt
args: [ "--format=requirements.txt", "--without-hashes", "-o", "requirements-dev.txt", "--only", "dev" ]
- id: poetry-export
name: export requirements-docs.txt
args: [ "--format=requirements.txt", "--without-hashes", "-o", "requirements-docs.txt", "--only", "docs" ]
- repo: https://github.com/asottile/pyupgrade
rev: v3.4.0
hooks:
- id: pyupgrade
args: [ --py36-plus ]
- repo: https://github.com/MarcoGorelli/auto-walrus
rev: v0.2.2
hooks:
- id: auto-walrus
- repo: https://github.com/pre-commit/pygrep-hooks
rev: "v1.10.0"
hooks:
- id: python-check-blanket-type-ignore
- id: python-no-eval
- id: python-no-log-warn
- id: python-use-type-annotations
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
types: [ python ]
- id: trailing-whitespace
- id: check-added-large-files
- id: check-case-conflict
- id: check-merge-conflict
- id: check-ast
- id: check-docstring-first
- id: check-executables-have-shebangs
- id: check-json
- id: detect-private-key
- repo: https://github.com/psf/black
rev: 23.3.0
hooks:
- id: black
- repo: https://github.com/pycqa/flake8
rev: 6.0.0
hooks:
- id: flake8
args: [
"--config=.flake8",
]
- repo: local
hooks:
- id: pylint
name: pylint
entry: venv/bin/pylint
files: src
language: system
types: [ python ]
args:
[
"--rcfile=.pylintrc",
"-rn",
"-sn",
]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.3.0'
hooks:
- id: mypy
args: [ --config-file=.mypy.ini ]
additional_dependencies:
- types-requests