Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
The most convenient way to use ruff is via uvx
.
uvx ruff check /some/path
uvx ruff format /some/path
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
The most convenient way to use ruff is via uvx
.
uvx ruff check /some/path
uvx ruff format /some/path
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
unused_variables unused_imports dead_code
Clippy does not support filtering by specific lint directly. However, it can be achieved via the old rustc flags hack. For example, you can use the …
Things on this page are fragmentary and immature notes/thoughts of the author. Please read with your own judgement!
It is suggested that you avoid using darglint
directly,
but instead you can use flake8
which will automatically call darglint
if it exists.
Improperly escaped \n
causes darglint …