chore(pyproject): configure Ruff to exclude specific directories from linting
Some checks failed
Build and Publish Docker Image / build (pull_request) Has been skipped
Build Test / Build and Test (pull_request) Successful in 1m18s
CI / lint (pull_request) Failing after 2m9s
CI / test-backend (pull_request) Successful in 1m9s
CI / lint (push) Failing after 2m20s
Tests / test (push) Failing after 8m24s
Tests / test (pull_request) Failing after 8m5s
Benchmarks / benchmark (push) Successful in 9m35s
CI / build-frontend (push) Successful in 9m44s
CI / build-frontend (pull_request) Successful in 9m40s
Benchmarks / benchmark (pull_request) Successful in 13m44s
Build and Publish Docker Image / build-dev (pull_request) Successful in 12m36s
CI / test-backend (push) Successful in 1m16s
Build Test / Build and Test (push) Successful in 1m21s

This commit is contained in:
2026-01-03 17:41:21 -06:00
parent 246d9f5f74
commit 59919f9281

View File

@@ -65,3 +65,13 @@ meshchatx = ["public/**/*", "public/*"]
[build-system]
requires = ["setuptools>=65.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.ruff]
exclude = [
".git",
".pnpm-store",
"node_modules",
"venv",
".venv",
"tests/frontend",
]