Files
wehub-resource-sync b7f52be4c9
Copilot Setup Steps / copilot-setup-steps (push) Waiting to run
CI / Run CI (push) Has been cancelled
CI / check-backend (push) Has been cancelled
CI / check-frontend (push) Has been cancelled
CI / tests (push) Has been cancelled
CI / e2e-tests (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:48:47 +08:00

81 lines
1.2 KiB
TOML

[dependency-groups]
dev = ["actionlint-py>=1.7.12.24"]
backend = ["chainlit"]
[tool.mypy]
python_version = "3.10"
[[tool.mypy.overrides]]
module = [
"boto3.dynamodb.types",
"botbuilder.*",
"filetype",
"langflow",
"lazify",
"plotly",
"nest_asyncio",
"socketio.*",
"syncer",
"azure.storage.filedatalake",
"google-cloud-storage",
"azure.storage.blob",
"azure.storage.blob.aio",
"google.auth",
"google.oauth2",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
testpaths = ["backend/tests"]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = [
"E",
"F",
"I",
"LOG",
"UP",
"T10",
"ISC",
"ICN",
"LOG",
"G",
"PIE",
"PT",
"Q",
"RSE",
"FURB",
"RUF",
]
ignore = [
"E712",
"E501",
"UP006",
"UP007",
"UP035",
"UP045",
"PIE790",
"RUF005",
"RUF006",
"RUF012",
"ISC001",
]
[tool.ruff.lint.isort]
combine-as-imports = true
known-first-party = ["chainlit"]
[tool.uv]
default-groups = ["backend"]
package = false
[tool.uv.sources]
chainlit = { workspace = true }
[tool.uv.workspace]
members = ["backend"]