-
Notifications
You must be signed in to change notification settings - Fork 1
/
.pre-commit-config.yaml
45 lines (45 loc) · 1.23 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: trailing-whitespace
- id: end-of-file-fixer
- id: check-yaml
- id: check-added-large-files
- id: check-toml
- repo: https://github.com/asottile/pyupgrade
rev: v3.15.1
hooks:
- id: pyupgrade
args: [--py311-plus]
- repo: https://github.com/adamchainz/django-upgrade
rev: 1.16.0
hooks:
- id: django-upgrade
args: [--target-version, "5.0"]
- repo: https://github.com/psf/black
# black config is in pyproject.toml
rev: 24.2.0
hooks:
- id: black
language_version: python3.11
exclude: ^docs
- repo: https://github.com/timothycrosley/isort
# isort config in pyproject.toml does not work FIXME
rev: 5.13.2
hooks:
- id: isort
language_version: python3
args: [--profile=black, --line-length=120]
- repo: https://github.com/PyCQA/flake8
# flake8 config is in .flake8
rev: 7.0.0
hooks:
- id: flake8
language_version: python3
exclude: ^docs
- repo: https://github.com/rtts/djhtml
rev: "3.0.6" # replace with the latest tag on GitHub
hooks:
- id: djhtml
args: [-t, "2"]