mirror of
https://github.com/django-components/django-components.git
synced 2025-08-15 19:50:13 +00:00

There were duplicated config for isort in two files, this PR merge them into pyproject.toml
23 lines
313 B
TOML
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"
|