From 01364bdc16adf07ee726f72bf0be62e32ea1404e Mon Sep 17 00:00:00 2001 From: Gustavo Henrique Santos Souza de Miranda Date: Sat, 29 Nov 2025 04:09:25 -0300 Subject: [PATCH] Update Qodana config: add bootstrap step and exclude generated sources - Added bootstrap command to generate sources for import resolution. - Excluded generated sources from inspections to reduce noise. --- qodana.yaml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/qodana.yaml b/qodana.yaml index ff32305..70082e6 100644 --- a/qodana.yaml +++ b/qodana.yaml @@ -6,5 +6,14 @@ version: "1.0" linter: jetbrains/qodana-jvm:2025.2 profile: name: qodana.recommended +bootstrap: | + # Generate sources (including protobuf) so Qodana resolves imports correctly + ./mvnw -B -q -DskipTests -DskipITs=true generate-sources include: - - name: CheckDependencyLicenses \ No newline at end of file + - name: CheckDependencyLicenses +exclude: + # Exclude generated sources from inspections to reduce noise + - name: All + paths: + - target/generated-sources/** + - target/protoc-dependencies/** \ No newline at end of file