From 94414da16d26250539b4d9fd8faed7f8df0f21bc Mon Sep 17 00:00:00 2001 From: AndiMajore <andi.majore@googlemail.com> Date: Fri, 5 May 2023 14:00:32 +0200 Subject: [PATCH] adjusted linting options for line length Former-commit-id: 479bb578f96d3c3ff146c2e11baa6e42943cb748 [formerly bf62114fe159954e9febe5c66c335ed54abda0d7] Former-commit-id: 2f8bb90e7f528840aaaabdc295cf06ad240a7976 --- setup.cfg | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.cfg b/setup.cfg index 901b495..f96fc62 100755 --- a/setup.cfg +++ b/setup.cfg @@ -1,10 +1,10 @@ [pycodestyle] exclude = */migrations/*,.env,venv,test_*,manage.py,tasks/*,*/commands/* -max-line-length = 120 +max-line-length = 200 ignore = E203,W503 [flake8] exclude = */migrations/*,.env,venv,test_*,manage.py,tasks/*,*/commands/*,*/__init__.py,*/settings.py -max-line-length = 120 +max-line-length = 200 ignore = E203,W503,F405,F403 inline-quotes = ' -- GitLab