How to configure Ruff
to apply all rules?
#3419
-
I want to set ruff to apply all rules something like. [tool.ruff]
select = [
"*"
] |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
I couldn't find it documented anywhere, but the [tool.ruff]
select = [
"ALL",
] |
Beta Was this translation helpful? Give feedback.
-
No, it's not documented in the It is documented here: https://beta.ruff.rs/docs/configuration/#using-pyprojecttoml, which you'd expect to be specifically about pyproject.toml:
|
Beta Was this translation helpful? Give feedback.
I couldn't find it documented anywhere, but the
ALL
code will select all available rules: