File tree 3 files changed +10
-6
lines changed
3 files changed +10
-6
lines changed Original file line number Diff line number Diff line change 14
14
- id : mixed-line-ending
15
15
- id : trailing-whitespace
16
16
- repo : https://github.com/adamchainz/django-upgrade
17
- rev : 1.18 .0
17
+ rev : 1.20 .0
18
18
hooks :
19
19
- id : django-upgrade
20
20
args : [--target-version, "3.2"]
23
23
hooks :
24
24
- id : absolufy-imports
25
25
- repo : https://github.com/astral-sh/ruff-pre-commit
26
- rev : " v0.4.7 "
26
+ rev : " v0.5.5 "
27
27
hooks :
28
28
- id : ruff
29
29
- id : ruff-format
@@ -34,12 +34,12 @@ repos:
34
34
args : [--list-different, --no-semi]
35
35
exclude : " ^conf/|.*\\ .html$"
36
36
- repo : https://github.com/biomejs/pre-commit
37
- rev : " v0.1 .0"
37
+ rev : " v0.4 .0"
38
38
hooks :
39
39
- id : biome-check
40
40
additional_dependencies :
["@biomejs/[email protected] "]
41
41
- repo : https://github.com/tox-dev/pyproject-fmt
42
- rev : 2.1.3
42
+ rev : 2.1.4
43
43
hooks :
44
44
- id : pyproject-fmt
45
45
- repo : https://github.com/abravalheri/validate-pyproject
Original file line number Diff line number Diff line change @@ -144,7 +144,7 @@ def load_dump(
144
144
)
145
145
146
146
147
- def _load_dump ( # noqa: PLR0913
147
+ def _load_dump (
148
148
data ,
149
149
objects ,
150
150
progress ,
Original file line number Diff line number Diff line change @@ -75,7 +75,9 @@ lint.extend-select = [
75
75
# flake8-pie
76
76
" PIE" ,
77
77
# pylint
78
- " PL" ,
78
+ " PLC" ,
79
+ " PLE" ,
80
+ " PLW" ,
79
81
# unused noqa
80
82
" RUF100" ,
81
83
# flake8-simplify
@@ -91,6 +93,8 @@ lint.extend-ignore = [
91
93
" B905" ,
92
94
# No line length errors
93
95
" E501" ,
96
+ # Who cares
97
+ " UP031" ,
94
98
]
95
99
lint.per-file-ignores."*/migrat*/*" = [
96
100
# Allow using PascalCase model names in migrations
You can’t perform that action at this time.
0 commit comments