django-components/pyproject.toml
Hanif Birgani 328909b4c2 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
2021-09-12 00:00:07 +04:30

23 lines
313 B
TOML

[tool.black]
line-length = 79
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| activate
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
multi_line_output = 3
include_trailing_comma = "True"
known_first_party = "django_components"