[pydoclint] Implement docstring-missing-parameter (DOC101)#21076
Open
augustelalande wants to merge 1 commit intoastral-sh:mainfrom
Open
[pydoclint] Implement docstring-missing-parameter (DOC101)#21076augustelalande wants to merge 1 commit intoastral-sh:mainfrom
pydoclint] Implement docstring-missing-parameter (DOC101)#21076augustelalande wants to merge 1 commit intoastral-sh:mainfrom
Conversation
Contributor
|
| code | total | + violation | - violation | + fix | - fix |
|---|---|---|---|---|---|
| DOC101 | 13568 | 13568 | 0 | 0 | 0 |
| D415 | 12 | 6 | 6 | 0 | 0 |
| D200 | 6 | 3 | 3 | 0 | 0 |
| DOC501 | 6 | 3 | 3 | 0 | 0 |
| D202 | 4 | 2 | 2 | 0 | 0 |
| DOC201 | 4 | 2 | 2 | 0 | 0 |
| D400 | 2 | 1 | 1 | 0 | 0 |
| D212 | 2 | 1 | 1 | 0 | 0 |
| PLR1702 | 2 | 1 | 1 | 0 | 0 |
Contributor
|
Hey @augustelalande, sorry for the very long delay here. Does this mean we can close #13280 now that both rules have been moved out into separate PRs? And is this blocked on #21154 (or at least should I review that one first)? I vaguely remember discussing that but wanted to double check. Both of these are still in my inbox, which I'm trying hard to work down this week. |
Contributor
Author
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Implement
docstring-missing-parameter(DOC101). This rule checks that all parameters present in a functions signature are also documented in the docstring.Split from #13280.
Part of #12434.
Test Plan
Test cases added.