From 59919f928152bbfb1ad258119db5570be7e8ee44 Mon Sep 17 00:00:00 2001 From: Sudo-Ivan Date: Sat, 3 Jan 2026 17:41:21 -0600 Subject: [PATCH] chore(pyproject): configure Ruff to exclude specific directories from linting --- pyproject.toml | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index c472315..ded16ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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", +]