Hacker News new | ask | show | jobs
by captnswing 1272 days ago
yes it does. see see https://github.com/charliermarsh/ruff#supported-rules for the rules it supports. "IOO1" being the code for isort

relevant section from my pyproject.toml

  [tool.ruff]
  line-length = 88
  # pyflakes, pycodestyle, isort
  select = ["F", "E", "W", "I001"]
1 comments

But does it just lint, or also effectively sort the imports?