Files
2026-07-13 13:32:23 +08:00

15 lines
372 B
TOML

[tool.isort]
profile = "black"
forced_separate = ["tests"]
line_length = 100
skip_gitignore = true # align tool behavior with Black
extend_skip=[
# Correctly ordering the imports in serverless functions would
# require a pyproject.toml in every function; don't bother with it for now.
"serverless",
]
[tool.black]
line-length = 100
target-version = ['py310']