@@ -12,20 +12,34 @@ ignore =
12
12
C408,
13
13
14
14
# To be addressed:
15
- D100, # Missing docstring in public module
16
- D101, # Missing docstring in public class
17
- D102, # Missing docstring in public method
18
- D103, # Missing docstring in public function
19
- D104, # Missing docstring in public package
20
- D105, # Missing docstring in magic method
21
- D107, # Missing docstring in __init__
22
- D200, # One-line docstring should fit on one line with quotes
23
- D202, # No blank lines allowed after function docstring
24
- D205, # 1 blank line required between summary line and description
25
- D209, # Multi-line docstring closing quotes should be on a separate line
26
- D400, # First line should end with a period
27
- D401, # First line should be in imperative mood
28
- D402 # First line should not be the function's "signature"
15
+ # Missing docstring in public module
16
+ D100,
17
+ # Missing docstring in public class
18
+ D101,
19
+ # Missing docstring in public method
20
+ D102,
21
+ # Missing docstring in public function
22
+ D103,
23
+ # Missing docstring in public package
24
+ D104,
25
+ # Missing docstring in magic method
26
+ D105,
27
+ # Missing docstring in __init__
28
+ D107,
29
+ # One-line docstring should fit on one line with quotes
30
+ D200,
31
+ # No blank lines allowed after function docstring
32
+ D202,
33
+ # 1 blank line required between summary line and description
34
+ D205,
35
+ # Multi-line docstring closing quotes should be on a separate line
36
+ D209,
37
+ # First line should end with a period
38
+ D400,
39
+ # First line should be in imperative mood
40
+ D401,
41
+ # First line should not be the function's "signature"
42
+ D402
29
43
30
44
per-file-ignores =
31
45
# F401: Ignore "imported but unused" errors in __init__ files, as those
0 commit comments