File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -245,15 +245,8 @@ extend-exclude = [
245
245
" doc" ,
246
246
" _typed_ops.pyi" ,
247
247
]
248
- extend-safe-fixes = [
249
- " TID252" , # absolute imports
250
- ]
251
248
target-version = " py39"
252
249
253
- [tool .ruff .per-file-ignores ]
254
- # don't enforce absolute imports
255
- "asv_bench/**" = [" TID252" ]
256
-
257
250
[tool .ruff .lint ]
258
251
# E402: module level import not at top of file
259
252
# E501: line too long - let black worry about that
@@ -271,6 +264,13 @@ select = [
271
264
" I" , # isort
272
265
" UP" , # Pyupgrade
273
266
]
267
+ extend-safe-fixes = [
268
+ " TID252" , # absolute imports
269
+ ]
270
+
271
+ [tool .ruff .lint .per-file-ignores ]
272
+ # don't enforce absolute imports
273
+ "asv_bench/**" = [" TID252" ]
274
274
275
275
[tool .ruff .lint .isort ]
276
276
known-first-party = [" xarray" ]
You can’t perform that action at this time.
0 commit comments