ruff single line import ======================= I've been using ruff to lint my python code for quite awhile now, I was pretty early to jump on it after release. Some of my projects have had a nice... Date: May 4, 2025 I've been using ruff to lint my python code for quite awhile now, I was pretty early to jump on it after release. Some of my projects have had a nice force-single-line setting and some have not. I dug into the docs and it was not clear what I needed to make it work. ``` toml [tool.ruff] select = ['I'] # you probably want others as well [tool.ruff.isort] force-single-line = true ``` Turns out I was missing **I**sort in the select list.