You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ruff and uv are two new tools to make the formatting/linting and tool installation for python better. Let's switch from using the weird mix of flit, black, and flake8 to simply and consistently using ruff and uv (I know @sampsyo has already made this switch for Bril).
The text was updated successfully, but these errors were encountered:
If we want to do this migration in stages, the formatting side should be pretty simple. We can basically just run ruff format --check instead of the call to black. The linting is ruff check (though it seems there are a fair number of lints to fix).
Half of #2404.
The whole repo now has the python code format checked by `ruff format
--check` and linted by `ruff check`. _All_ python code is now subject to
these checks instead of being opt in.
ruff
anduv
are two new tools to make the formatting/linting and tool installation for python better. Let's switch from using the weird mix offlit
,black
, andflake8
to simply and consistently usingruff
anduv
(I know @sampsyo has already made this switch for Bril).The text was updated successfully, but these errors were encountered: