diff --git a/setup.cfg b/setup.cfg index 93e2c45..1e79ce8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [flake8] -max-line-length = 100 +max-line-length=100 +ignore=E501 # Ignoring "E501 line too long" since pylint checks it [pytype] -disable = - wrong-keyword-args \ No newline at end of file +disable=wrong-keyword-args \ No newline at end of file diff --git a/tests/tests.pylintrc b/tests/tests.pylintrc index 82cbbef..d20c932 100644 --- a/tests/tests.pylintrc +++ b/tests/tests.pylintrc @@ -2,4 +2,7 @@ disable=missing-docstring, unsubscriptable-object, no-self-use, unsupported-membership-test [design] -min-public-methods=1 \ No newline at end of file +min-public-methods=1 + +[format] +max-line-length=110 \ No newline at end of file