mirror of
https://github.com/davidfraser/pyan.git
synced 2026-01-08 22:07:55 -05:00
27 lines
351 B
TOML
27 lines
351 B
TOML
[tool.isort]
|
|
profile = "black"
|
|
honor_noqa = true
|
|
line_length = 120
|
|
combine_as_imports = true
|
|
force_sort_within_sections = true
|
|
known_first_party = "pyan"
|
|
|
|
[tool.black]
|
|
line-length = 120
|
|
include = '\.pyi?$'
|
|
exclude = '''
|
|
/(
|
|
\.git
|
|
| \.hg
|
|
| \.mypy_cache
|
|
| \.tox
|
|
| \.venv
|
|
| _build
|
|
| egg-info
|
|
| buck-out
|
|
| build
|
|
| dist
|
|
| env
|
|
)/
|
|
'''
|