Move duplicated isort config from setup.cfg to pyproject.toml

There were duplicated config for isort in two files, this PR merge them into pyproject.toml
This commit is contained in:
Hanif Birgani 2021-09-12 00:00:07 +04:30
parent bfc27a6b75
commit 328909b4c2
2 changed files with 2 additions and 7 deletions

View file

@ -19,3 +19,5 @@ exclude = '''
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = "True"
known_first_party = "django_components"

View file

@ -1,10 +1,3 @@
[flake8]
ignore = E302,W503
max-line-length = 119
[isort]
line_length = 119
multi_line_output = 5
include_trailing_comma = True
known_first_party =
django_components