Replies: 1 comment
-
I don't think that's possible without explicitly ignoring all rules except the |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hi, I have an extensive .ruff.toml settings file, which explicitly specifies, among other things, a
pydocstyle.convention
and additionally a few other pydocstyle (D
) rules to ignore.Is it possible to run ruff check from the terminal, selecting only the
D
rules as specified in the settings file?ruff check --select D
will still adhere to the convention, but not the additional ignores.I've tried different things,
--extend-ignore
, etc, but always end up either with allD
rules activated, allD
rules within the convention activated, or also listing non-D
rules.Any advice?
Beta Was this translation helpful? Give feedback.
All reactions