mirror of
https://github.com/Redume/Shirino.git
synced 2025-07-04 03:00:55 +01:00
20 lines
272 B
TOML
20 lines
272 B
TOML
[tool.isort]
|
|
profile = "black"
|
|
line_length = 79
|
|
known_first_party = ["kekkai", "chart"]
|
|
|
|
[tool.black]
|
|
line-length = 79
|
|
target-version = ['py312']
|
|
include = '\.pyi?$'
|
|
exclude = '''
|
|
/(
|
|
\.git
|
|
| \.mypy_cache
|
|
| \.venv
|
|
| build
|
|
| dist
|
|
| Dockerfile
|
|
| .*\.md$
|
|
)/
|
|
'''
|