-
Notifications
You must be signed in to change notification settings - Fork 915
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
Enable pydocstyle rules involving quotes #10748
Enable pydocstyle rules involving quotes #10748
Conversation
Codecov Report
@@ Coverage Diff @@
## branch-22.06 #10748 +/- ##
================================================
+ Coverage 86.37% 86.39% +0.02%
================================================
Files 142 142
Lines 22306 22306
================================================
+ Hits 19266 19272 +6
+ Misses 3040 3034 -6
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Great work. For a next step after this PR, I'd like to reduce the exclusions before adding more rules. We should try to enforce our style rules uniformly for dask_cudf
, cudf_kafka
, custreamz
, and python/cudf/cudf/tests
.
@bdice I am very much on board with trying to synchronize across all of the different cudf packages and reduce the number of configuration files. I don't think that there is a particular order in which we need to do these things, I suspect that we can progress to this goal incrementally in any order without running into many problems. The only issue that I'd foresee is that if multiple people work on this we'll need coordination to avoid conflicts. |
@gpucibot merge |
Follow-up to #10748 to enable the base pydocstyle rules on all Python packages (`dask_cudf`, `cudf_kafka`, `custreamz`) and test files. Contributes to #10711, #10758. Authors: - Bradley Dice (https://github.com/bdice) Approvers: - GALI PREM SAGAR (https://github.com/galipremsagar) URL: #10759
This PR enables D30* errors for pydocstyle. It also sets up the
ignore-decorators
configuration so that future PRs involving D10* errors will treat docutils decorators appropriately. Contributes to #10711.