tiny_clip / pyproject.toml
sachin's picture
isort
31e368b
raw
history blame contribute delete
No virus
457 Bytes
[tool.black]
line_length = 100
[tool.isort]
honor_noqa = true
line_length = 100
profile = "black"
verbose = false
known_first_party = [
# all folders you want to lump
"src",
]
# Block below is google style import formatting https://pycqa.github.io/isort/docs/configuration/profiles.html
force_sort_within_sections = true
force_single_line = true
lexicographical = true
single_line_exclusions = ["typing"]
order_by_type = false
group_by_package = true