Open-Sora/pyproject.toml
Jirka Borovec a7b6aacc99 lint: unify setting in pyproject.toml (#583)
* lint: unify setting in `pyproject.toml`

* apply pre-commit
2024-07-12 14:50:13 +08:00

17 lines
341 B
TOML

[tool.autoflake]
remove-unused-variables = true
remove-all-unused-imports = true
ignore-init-module-imports = true
[tool.isort]
line_length = 120
multi_line_output = 3
include_trailing_comma = true
ignore_comments = true
profile = "black"
honor_noqa = true
[tool.black]
line-length = 120
target-version = ["py37", "py38", "py39", "py310"]