# vim: set ft=dosini: [pycodestyle] count = True # E203: Whitespace before : (black incompatibility) # W503: Line break occurred before a binary operator # W504: Line break occurred after a binary operator ignore = E203,W503,W504 format = pylint # See Also: .editorconfig, .pylintrc max-line-length = 99 show-source = True statistics = True [pydocstyle] # D102: Missing docstring in public method (Avoids inheritence bug. Force checked in pylint instead.) # D105: Missing docstring in magic method # D107: Missing docstring in __init__ # D401: First line should be in imperative mood # We have many docstrings that are too long to fit on one line, so we ignore both of these two rules: # D205: 1 blank line required between summary line and description # D400: First line should end with a period add_ignore = D102,D105,D107,D401,D205,D400 match = .+(?