custom_vesync/pyproject.toml
2022-04-01 15:02:13 +02:00

17 lines
362 B
TOML

[tool.black]
target-version = ["py38"]
exclude = 'generated'
[tool.isort]
# https://github.com/PyCQA/isort/wiki/isort-Settings
profile = "black"
# will group `import x` and `from x import` of the same module.
force_sort_within_sections = true
known_first_party = [
"homeassistant",
"tests",
]
forced_separate = [
"tests",
]
combine_as_imports = true