From 68698fa35951febb6789d30d8924b24e64c1767d Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Wed, 4 Feb 2026 18:14:47 +0000 Subject: [PATCH] Fix CI: scope ruff to src/ directory only --- app/ruff.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/ruff.toml diff --git a/app/ruff.toml b/app/ruff.toml new file mode 100644 index 0000000..e583d9b --- /dev/null +++ b/app/ruff.toml @@ -0,0 +1,5 @@ +[lint] +exclude = [ + "__pycache__", + "*.egg-info", +]