From 5b1fda2279dd87f90b0bd622056293bb4518f7dc Mon Sep 17 00:00:00 2001 From: Test Date: Fri, 6 Mar 2026 11:32:22 +0100 Subject: [PATCH] chore: exclude tools/, scripts/ from CodeScene analysis tools/qmd/ contains vendored qmd source code (not our code) that was dragging the overall code health score down to 6.53. scripts/ contains one-shot utility scripts, not production code. Excluding both from CodeScene so the health metric reflects only the actual app codebase (src/, src-tauri/src/). --- .codescenerc | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .codescenerc diff --git a/.codescenerc b/.codescenerc new file mode 100644 index 00000000..98674816 --- /dev/null +++ b/.codescenerc @@ -0,0 +1,9 @@ +{ + "exclude": [ + "tools/", + "scripts/", + "src-tauri/gen/", + "coverage/", + "dist/" + ] +}