-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support for docformatter rules #1335
Comments
It's possible we can use the ruff |
Awesome :) Yeah I've used |
(Labeling as |
In the meantime, I've flipped on the Since |
Okay cool! (Note that some of the |
Yeah, the list of ignores I'm using for that category of lints is ... long. |
It might be easier to explicitly enable via |
It's actually not too bad:
|
And then of course this bit:
|
Ah okay yeah, in that case it's more concise to specify the ignores than the selects, which would be like: select = [
"D104",
"D106",
"D200",
"D201",
"D204",
"D206",
"D207",
"D208",
"D209",
"D210",
"D211",
"D212",
"D214",
"D215",
"D300",
"D301",
"D400",
"D403",
"D404",
"D405",
"D406",
"D407",
"D408",
"D409",
"D410",
"D411",
"D412",
"D413",
"D414",
"D415",
"D416",
"D418",
"D419",
] |
Closing for now since I think we actually have good coverage here. |
… be obsolete in all likelihood, at some point. astral-sh/ruff#1335
We just moved our linting setup over to ruff and it's great!
It would be amazing if we could remove our
docformatter
dependency as well in favor ofruff
.The text was updated successfully, but these errors were encountered: