generated from brylie/django-bootstrap-quick-start
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.pre-commit-config.yaml
67 lines (67 loc) · 1.68 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
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.5.0
hooks:
- id: check-yaml
- id: end-of-file-fixer
- id: trailing-whitespace
- id: check-added-large-files
- id: check-case-conflict
- id: check-json
- id: check-toml
- id: check-merge-conflict
- repo: https://github.com/asottile/pyupgrade
rev: v3.15.0
hooks:
- id: pyupgrade
args: [--py311-plus]
- repo: https://github.com/adamchainz/django-upgrade
rev: 1.15.0
hooks:
- id: django-upgrade
args: [--target-version, "4.2"]
- repo: https://github.com/asottile/add-trailing-comma
rev: v3.1.0
hooks:
- id: add-trailing-comma
args: [--py36-plus]
exclude: ".*migrations/.*"
- repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version.
rev: v0.1.5
hooks:
# Run the linter.
- id: ruff
args: [--fix]
exclude: ".*migrations/.*"
# Run the formatter.
- id: ruff-format
exclude: ".*migrations/.*"
- repo: https://github.com/thibaudcolas/curlylint
rev: "v0.13.1"
hooks:
- id: curlylint
- repo: https://github.com/PyCQA/docformatter
rev: "v1.7.5"
hooks:
- id: docformatter
- repo: https://github.com/rtts/djhtml
rev: 3.0.6
hooks:
- id: djhtml
- repo: https://github.com/pre-commit/mirrors-prettier
rev: v3.1.0
hooks:
- id: prettier
types_or:
- css
- javascript
- json
- markdown
- scss
- yaml
- repo: https://github.com/google/keep-sorted
rev: v0.2.0
hooks:
- id: keep-sorted
exclude: ".*migrations/.*"