31 lines
812 B
INI
31 lines
812 B
INI
[flake8]
|
|
ignore=
|
|
#: Missing docstring in public module
|
|
D100,
|
|
#: Missing docstring in public class
|
|
D101,
|
|
#: Missing docstring in public method
|
|
D102,
|
|
D103,
|
|
#: Missing docstring in __init__
|
|
D107,
|
|
D205,
|
|
#: Missing docstring in magic method
|
|
D105,
|
|
#: 1 blank line required before class docstring
|
|
D203,
|
|
#: We adhere to D212 instead
|
|
D213,
|
|
#: All section formatting, which seems to be impossible to comply
|
|
D4,
|
|
#: We adhere to W504 instead: line break should be before binary operator
|
|
W503,
|
|
#: No docstring in public nested class (e.g. Meta)
|
|
D106,
|
|
extend-ignore = E203
|
|
max-line-length = 100
|
|
# Enabled extra docstyle checks
|
|
docstring-convention=all
|
|
add-select =
|
|
D212, #: Multi-line docstring summary should start at the first line
|