mirror of
https://github.com/django-components/django-components.git
synced 2025-12-04 04:01:35 +00:00
45 lines
No EOL
618 B
TOML
45 lines
No EOL
618 B
TOML
[tool.black]
|
|
line-length = 119
|
|
include = '\.pyi?$'
|
|
exclude = '''
|
|
/(
|
|
\.git
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| activate
|
|
| _build
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
)/
|
|
'''
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
line_length = 119
|
|
multi_line_output = 3
|
|
include_trailing_comma = "True"
|
|
known_first_party = "django_components"
|
|
|
|
[tool.flake8]
|
|
ignore = ['E302', 'W503']
|
|
max-line-length = 119
|
|
exclude = [
|
|
'migrations',
|
|
'__pycache__',
|
|
'manage.py',
|
|
'settings.py',
|
|
'env',
|
|
'.env',
|
|
'.venv',
|
|
'.tox',
|
|
]
|
|
|
|
[tool.mypy]
|
|
check_untyped_defs = true
|
|
ignore_missing_imports = true
|
|
exclude = [
|
|
'test_structures'
|
|
] |