Skip to content

Commit

Permalink
pep257: turn off D402 checking
Browse files Browse the repository at this point in the history
Turn off:
First line should not be the function's "signature" (D402)

as it weirdly interacts with
Multi-line docstring summary should start at the second line (D213)

Signed-off-by: Robin Getz <[email protected]>
  • Loading branch information
rgetz committed May 18, 2020
1 parent 008a099 commit eda1e62
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .prospector.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,6 @@ pep257:
disable: [
D203, # 1 blank line required before class docstring
# conflicts with D0211, No blank lines allowed before class docstring
D402, # First line should not be the function's "signature"
# conflicts with D213, Multi-line docstring summary should start at the second line
]

0 comments on commit eda1e62

Please sign in to comment.