This repository was archived by the owner on Nov 3, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -15,4 +15,4 @@ check only error codes that are part of the `PEP257
15
15
<http://www.python.org/dev/peps/pep-0257/> `_ official convention.
16
16
17
17
All of the above error codes are checked for by default except for D203,
18
- D212 and D213 .
18
+ D212, D213 and D404 .
Original file line number Diff line number Diff line change @@ -7,10 +7,17 @@ Release Notes
7
7
Current Development Version
8
8
---------------------------
9
9
10
+ New Features
11
+
10
12
* Added the optional error codes D212 and D213, for checking whether
11
13
the summary of a multi-line docstring starts at the first line,
12
14
respectively at the second line (#174).
13
15
16
+ * Added D404 - First word of the docstring should not be `This `. It is turned
17
+ off by default (#183).
18
+
19
+ Bug Fixes
20
+
14
21
* The error code D300 is now also being reported if a docstring has
15
22
uppercase literals (``R `` or ``U ``) as prefix (#176).
16
23
Original file line number Diff line number Diff line change @@ -28,3 +28,4 @@ addopts = -rw
28
28
[pep257]
29
29
inherit = false
30
30
convention = pep257
31
+ add-select = D404
You can’t perform that action at this time.
0 commit comments