-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
.pre-commit-config.yaml
66 lines (60 loc) · 1.79 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
# See https://pre-commit.com for more information
# See https://pre-commit.com/hooks.html for more hooks
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.6.0
hooks:
- id: trailing-whitespace
exclude: newshomepages/extensions/
- id: end-of-file-fixer
exclude: newshomepages/extensions/
- id: check-yaml
exclude: newshomepages/extensions/
- id: check-added-large-files
args: ['--maxkb=10000']
- id: check-byte-order-marker
exclude: newshomepages/extensions
- id: check-case-conflict
exclude: newshomepages/extensions/
- id: check-json
exclude: newshomepages/extensions/
- id: mixed-line-ending
exclude: newshomepages/extensions/
- repo: https://github.com/psf/black
rev: 24.8.0
hooks:
- id: black
exclude: newshomepages/extensions/
- repo: https://github.com/asottile/blacken-docs
rev: 1.18.0
hooks:
- id: blacken-docs
additional_dependencies: [black]
exclude: newshomepages/extensions/
- repo: https://github.com/timothycrosley/isort
rev: 5.13.2
hooks:
- id: isort
- repo: https://github.com/pycqa/flake8
rev: 7.1.0
hooks:
- id: flake8
additional_dependencies:
- flake8-docstrings
- flake8-bugbear
- repo: https://github.com/asottile/pyupgrade
rev: v3.17.0
hooks:
- id: pyupgrade
args: [--py37-plus]
- repo: https://github.com/pre-commit/mirrors-mypy
rev: 'v1.11.1' # Use the sha / tag you want to point at
hooks:
- id: mypy
exclude: newshomepages/extensions
additional_dependencies:
- types-requests
- types-retry
- types-python-slugify
- types-pytz
- types-PyYAML