From 282c3bebaba00c65a8ff82e05bf505b0e8c692de Mon Sep 17 00:00:00 2001 From: lucaronin 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/" + ] +}