Changes between Initial Version and Version 1 of Ticket #25263, comment 5
- Timestamp:
- Aug 13, 2015, 12:39:09 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25263, comment 5
initial v1 3 3 4 4 Checks D100, D101, D102, and D103 all indicate Modules, Classes and Methods that have no documentation at all. 5 Others are mainly about consistency and some of them are definitely of minimal improvement or possibly even detrimental. 5 Others are mainly about consistency and some of them are definitely of minimal improvement or possibly even detrimental. D206 overlaps with PEP8 6 6 7 7 The full list is below. … … 32 32 D401 First line should be in imperative mood 33 33 D402 First line should not be the function’s “signature” 34 35 In my own mind, this subset feels like its worth adopting. 36 Other than the ones for missing docstrings, most of Django's documentation already fits within these checks. 37 D100 Missing docstring in public module 38 D101 Missing docstring in public class 39 D102 Missing docstring in public method 40 D103 Missing docstring in public function 41 D201 No blank lines allowed before function docstring 42 D202 No blank lines allowed after function docstring 43 D203 1 blank line required before class docstring 44 D204 1 blank line required after class docstring 45 D209 Multi-line docstring closing quotes should be on a separate line 46 D300 Use “”“triple double quotes”“” 47 D401 First line should be in imperative mood 48 D402 First line should not be the function’s “signature”