diff --git a/pylintrc b/pylintrc index e2e7059..d9d342d 100644 --- a/pylintrc +++ b/pylintrc @@ -6,7 +6,6 @@ load-plugins = pylint_pytest [MESSAGES CONTROL] enable = blacklisted-name, - line-too-long, syntax-error, init-is-generator, @@ -183,6 +182,7 @@ enable = deprecated-pragma, disable = invalid-name, + line-too-long, file-ignored, bad-indentation, unused-wildcard-import, diff --git a/setup.cfg b/setup.cfg index 084a664..7988fa5 100644 --- a/setup.cfg +++ b/setup.cfg @@ -112,8 +112,9 @@ max-line-length = 80 exclude = .git,.tox max-line-length = 80 ; E203 = whitespace before ':' +; E501 line too long ; W503 line break before binary operator -ignore = E203,W503 +ignore = E203,E501,W503 [pydocstyle] ; D105 = Missing docstring in magic method