diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..83c116e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,2 @@ +[tool.black] +line-length = 80 diff --git a/setup.cfg b/setup.cfg index 0326805..08724d8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,8 +1,15 @@ [flake8] -max-line-length = 120 -ignore = E252, W605 +ignore = E252,E501 exclude = env,.tox,.git,config/settings,*/migrations/*,*/static/CACHE/*,docs,node_modules -[pep8] -max-line-length = 120 +[pycodestyle] +ignore = E501 exclude=env,.tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules + +[isort] +line_length=80 +multi_line_output=3 +lines_between_types=1 +include_trailing_comma=True +not_skip=__init__.py +known_standard_library=dataclasses