diff --git a/.flake8 b/.flake8 index bdc9c31..cb7a7d5 100644 --- a/.flake8 +++ b/.flake8 @@ -1,11 +1,13 @@ [flake8] -max-line-length = 88 -ignore = - W503, # line break before binary operator - E231, # missing whitespace after ',' (caused by black style) - W605, # invalid escape sequence (caused by regex) - W291 # trailing whitespace +max-line-length = 91 +ignore = + W503, # line break before binary operator + E231, # missing whitespace after ',' (caused by black style) + W605, # invalid escape sequence (caused by regex) + W291, # trailing whitespace + E123, + W456 exclude = setup.py *venv* - .tox \ No newline at end of file + .tox diff --git a/pyproject.toml b/pyproject.toml index 6c508e6..a54b6e6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,6 +6,7 @@ exclude = ''' | migrations )/ ''' + [tool.isort] profile = "black" -multi_line_output = 3 \ No newline at end of file +multi_line_output = 3