@@ -249,29 +249,29 @@ extend-exclude = ["doc", "_typed_ops.pyi"]
249
249
250
250
[tool .ruff .lint ]
251
251
extend-select = [
252
- " W" , # pycodestyle warnings
253
- " I" , # isort
254
- " UP" , # pyupgrade
255
252
" B" , # flake8-bugbear
256
253
" C4" , # flake8-comprehensions
257
254
" ISC" , # flake8-implicit-str-concat
258
255
" PIE" , # flake8-pie
259
256
" TID" , # flake8-tidy-imports (absolute imports)
260
- " PGH " , # pygrep-hooks
257
+ " I " , # isort
261
258
" PERF" , # Perflint
259
+ " W" , # pycodestyle warnings
260
+ " PGH" , # pygrep-hooks
261
+ " UP" , # pyupgrade
262
262
" FURB" , # refurb
263
263
" RUF" ,
264
264
]
265
265
extend-safe-fixes = [
266
266
" TID252" , # absolute imports
267
267
]
268
268
ignore = [
269
- " E402" , # module level import not at top of file
270
- " E731" , # do not assign a lambda expression, use a def
271
- " UP007" , # use X | Y for type annotations
272
269
" C40" , # unnecessary generator, comprehension, or literal
273
270
" PIE790" , # unnecessary pass statement
274
271
" PERF203" , # try-except within a loop incurs performance overhead
272
+ " E402" , # module level import not at top of file
273
+ " E731" , # do not assign a lambda expression, use a def
274
+ " UP007" , # use X | Y for type annotations
275
275
" FURB105" , # unnecessary empty string passed to `print`
276
276
" RUF001" , # string contains ambiguous unicode character
277
277
" RUF002" , # docstring contains ambiguous acute accent unicode character
0 commit comments