Closed bollwyvl closed 1 year ago
Use the ruff stack for formatting/fixing.
ruff
ruff format now does what black does, and ruff --fix-only can replace isort (among other things). It will also operate on python-based .ipynb files, which might help to keep changes to the at-rest test/example notebooks more reviewable.
ruff format
black
ruff --fix-only
isort
.ipynb
Elevator Pitch
Use the
ruff
stack for formatting/fixing.Motivation
ruff format
now does whatblack
does, andruff --fix-only
can replaceisort
(among other things). It will also operate on python-based.ipynb
files, which might help to keep changes to the at-rest test/example notebooks more reviewable.