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.
This commit is contained in:
parent
64d6f80267
commit
01364bdc16
11
qodana.yaml
11
qodana.yaml
|
|
@ -6,5 +6,14 @@ version: "1.0"
|
||||||
linter: jetbrains/qodana-jvm:2025.2
|
linter: jetbrains/qodana-jvm:2025.2
|
||||||
profile:
|
profile:
|
||||||
name: qodana.recommended
|
name: qodana.recommended
|
||||||
|
bootstrap: |
|
||||||
|
# Generate sources (including protobuf) so Qodana resolves imports correctly
|
||||||
|
./mvnw -B -q -DskipTests -DskipITs=true generate-sources
|
||||||
include:
|
include:
|
||||||
- name: CheckDependencyLicenses
|
- name: CheckDependencyLicenses
|
||||||
|
exclude:
|
||||||
|
# Exclude generated sources from inspections to reduce noise
|
||||||
|
- name: All
|
||||||
|
paths:
|
||||||
|
- target/generated-sources/**
|
||||||
|
- target/protoc-dependencies/**
|
||||||
Loading…
Reference in New Issue