forked from pylint-dev/pylint
-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[missing-docstring] Break down into class, function, and module
Also fixed spelling in C0112 to C0116 messages following the review of pull-request pylint-dev#2036 by Ashley Whetter. See also pylint-dev#2075, pylint-dev#2077, pylint-dev#2262, pylint-dev#2654, pylint-dev#2805, pylint-dev#2809, pylint-dev#2844, pylint-dev#2992 and pylint-dev#3013 for full historical context.
- Loading branch information
1 parent
7b3bb94
commit 648b7d4
Showing
11 changed files
with
66 additions
and
37 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
missing-docstring:1::Missing module docstring | ||
missing-module-docstring:1::Missing module docstring | ||
empty-docstring:6:function0:Empty function docstring | ||
missing-docstring:10:function1:Missing function docstring | ||
missing-docstring:23:AAAA:Missing class docstring | ||
missing-docstring:40:AAAA.method1:Missing method docstring:INFERENCE | ||
missing-function-docstring:10:function1:Missing function or method docstring | ||
missing-class-docstring:23:AAAA:Missing class docstring | ||
missing-function-docstring:40:AAAA.method1:Missing function or method docstring:INFERENCE | ||
empty-docstring:48:AAAA.method3:Empty method docstring:INFERENCE | ||
empty-docstring:62:DDDD.method2:Empty method docstring:INFERENCE | ||
missing-docstring:70:DDDD.method4:Missing method docstring:INFERENCE | ||
missing-function-docstring:70:DDDD.method4:Missing function or method docstring:INFERENCE |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
missing-docstring:1::Missing module docstring | ||
missing-docstring:21:ClassUndocumented:Missing class docstring | ||
missing-docstring:25:public_undocumented:Missing function docstring | ||
missing-module-docstring:1::Missing module docstring | ||
missing-class-docstring:21:ClassUndocumented:Missing class docstring | ||
missing-function-docstring:25:public_undocumented:Missing function or method docstring |
This file contains 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
This file contains 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