File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 20
20
- id : trailing-whitespace
21
21
22
22
- repo : https://github.com/python-jsonschema/check-jsonschema
23
- rev : 0.19.2
23
+ rev : 0.21.0
24
24
hooks :
25
25
- id : check-github-workflows
26
26
@@ -30,12 +30,12 @@ repos:
30
30
- id : mdformat
31
31
32
32
- repo : https://github.com/psf/black
33
- rev : 22.12 .0
33
+ rev : 23.1 .0
34
34
hooks :
35
35
- id : black
36
36
37
37
- repo : https://github.com/charliermarsh/ruff-pre-commit
38
- rev : v0.0.237
38
+ rev : v0.0.242
39
39
hooks :
40
40
- id : ruff
41
41
args : ["--fix"]
Original file line number Diff line number Diff line change @@ -95,9 +95,9 @@ test = "mypy --install-types --non-interactive {args:.}"
95
95
96
96
[tool .hatch .envs .lint ]
97
97
dependencies = [
98
- " black[jupyter]==22.12 .0" ,
98
+ " black[jupyter]==23.1 .0" ,
99
99
" mdformat>0.7" ,
100
- " ruff==0.0.237 " ,
100
+ " ruff==0.0.242 " ,
101
101
]
102
102
detached = true
103
103
[tool .hatch .envs .lint .scripts ]
@@ -178,6 +178,8 @@ ignore = [
178
178
" E501" ,
179
179
# SIM105 Use `contextlib.suppress(...)`
180
180
" SIM105" ,
181
+ # PLR0913 Too many arguments to function call
182
+ " PLR0913" ,
181
183
]
182
184
unfixable = [
183
185
# Don't touch print statements
You can’t perform that action at this time.
0 commit comments