-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.pre-commit-config.yaml
39 lines (39 loc) · 1000 Bytes
/
.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
repos:
- repo: local
hooks:
- id: mypy
name: mypy
entry: mypy price_monitoring bot.py csmoney_parser.py steam_parser.py worker.py
language: system
types: [ python ]
pass_filenames: false
args:
[
--config-file=pyproject.toml,
--ignore-missing-imports,
]
- repo: local
hooks:
- id: black
name: black
entry: black price_monitoring utils bot.py csmoney_parser.py steam_parser.py worker.py
language: system
types: [ python ]
- repo: local
hooks:
- id: pylint
name: pylint
entry: pylint
language: system
types: [ python ]
args:
[
"--rcfile=pyproject.toml",
"--fail-under=8",
"price_monitoring",
"utils",
"bot.py",
"csmoney_parser.py",
"steam_parser.py",
"worker.py"
]