[tool.ruff.isort]
vs [tool.ruff.lint.isort]
#20149
-
Hi, I have a question about the isort configuration in Ruff. In [tool.ruff.isort]
combine-as-imports = true [tool.ruff.lint.isort]
combine-as-imports = true I tried both, and Ruff seems to apply the setting in either case. However, in the official docs (https://docs.astral.sh/ruff/settings/#lint_isort_combine-as-imports), Is Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
[tool.ruff.isort]
is deprecated, the official supported header is[tool.ruff.lint.isort]
. You should see the deprecation warning when you runruff check
: