From a753f17e5fda000f0ec202ff584b2437d5b406b6 Mon Sep 17 00:00:00 2001 From: Raymond Stone Date: Wed, 8 Apr 2026 17:46:49 +0100 Subject: [PATCH] Add Qodana config for .NET code analysis Added qodana.yaml to configure Qodana static analysis for the project. Specified the linter version, target solution (JobTracker.slnx), excluded common build and library directories, and set the recommended analysis profile. --- qodana.yaml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 qodana.yaml diff --git a/qodana.yaml b/qodana.yaml new file mode 100644 index 0000000..51db6da --- /dev/null +++ b/qodana.yaml @@ -0,0 +1,19 @@ +version: "1.0" + +linter: jetbrains/qodana-cdnet:2025.3-eap + +dotnet: + solution: JobTracker.slnx + +exclude: + - name: All + paths: + - wwwroot/lib + - obj + - bin + - Migrations + - .vs + - .git + +profile: + name: qodana.recommended