diff --git a/setup.cfg b/setup.cfg index 4acfd37b..091e816a 100644 --- a/setup.cfg +++ b/setup.cfg @@ -96,8 +96,14 @@ ignore = D400 # D415 First line should end with a period, question mark, or exclamation point D415 + # E203 Whitespace before ':' + E203 # E231 missing whitespace after ',' E231 + # E501 Line too long (82 > 79 characters) + E501 + # E701 Multiple statements on one line (colon) + E701 # W503 line break before binary operator W503 # Darglint options when run as a Flake8 plugin: