isort has a from_first setting that forces "from .. import .." lines to appear before "import .." lines.
It would be great if ruff could support this too, or something like it. For example:
results in:
from __future__ import annotations
from os import path
import enum
import os
isort has a
from_firstsetting that forces "from .. import .." lines to appear before "import .." lines.It would be great if ruff could support this too, or something like it. For example:
results in: