mirror of
https://gitee.com/dify_ai/dify.git
synced 2024-12-02 11:18:19 +08:00
19 lines
314 B
TOML
19 lines
314 B
TOML
[project]
|
|
requires-python = ">=3.10"
|
|
|
|
[tool.ruff]
|
|
exclude = [
|
|
"__init__.py",
|
|
"tests/",
|
|
]
|
|
line-length = 120
|
|
|
|
[tool.ruff.lint]
|
|
ignore-init-module-imports = true
|
|
select = [
|
|
"F401", # unused-import
|
|
"I001", # unsorted-imports
|
|
"I002", # missing-required-import
|
|
"F811", # redefined-while-unused
|
|
]
|