@@ -57,7 +57,7 @@ dependencies = ["mypy>=0.990"]
57
57
test = " mypy --install-types --non-interactive {args:.}"
58
58
59
59
[tool .hatch .envs .lint ]
60
- dependencies = [" black==23.1 .0" , " mdformat>0.7" , " ruff==0.0.254 " ]
60
+ dependencies = [" black==23.3 .0" , " mdformat>0.7" , " ruff==0.0.260 " ]
61
61
detached = true
62
62
[tool .hatch .envs .lint .scripts ]
63
63
style = [
@@ -201,9 +201,12 @@ unfixable = [
201
201
# B007 Loop control variable `i` not used within the loop body.
202
202
# N802 Function name `assertIn` should be lowercase
203
203
# F841 Local variable `t` is assigned to but never used
204
- "traitlets/tests/*" = [" B011" , " F841" , " C408" , " E402" , " T201" , " B007" , " N802" , " F841" ]
204
+ # B018 Found useless expression
205
+ # S301 `pickle` and modules that wrap...
206
+ "traitlets/tests/*" = [" B011" , " F841" , " C408" , " E402" , " T201" , " B007" , " N802" , " F841" ,
207
+ " B018" , " S301" ]
205
208
# B003 Assigning to os.environ doesn't clear the environment
206
- "traitlets/config/tests/*" = [" B003" ]
209
+ "traitlets/config/tests/*" = [" B003" , " B018 " , " S301 " ]
207
210
# F401 `_version.__version__` imported but unused
208
211
# F403 `from .traitlets import *` used; unable to detect undefined names
209
212
"traitlets/*__init__.py" = [" F401" , " F403" ]
0 commit comments