Skip to content

Commit

Permalink
Update qodana.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinWitt authored Sep 3, 2023
1 parent f667aa6 commit bc7c8a5
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions qodana.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
profile:
name: qodana.recommended
version: "1.0"
name: "Spoon-Checks" # Profile name
baseProfile: qodana.recommended
groups:
- groupId: IncludedPaths
groups:
Expand All @@ -16,7 +15,7 @@ groups:
- JavadocBlankLines # Questionable. Spam on mockito, RxJava and other projects.
- UseOfClone # We often use clone (correctly implemented as a deep copy). It's not a problem.
- UnstableApiUsage
- MissortedModifiers # Disabled for annotations applied to type
# - MissortedModifiers # Disabled for annotations applied to type
- AssignmentToNull # Disabled as it does not support nullability annotations
inspections:
- group: ExcludedInspections
Expand All @@ -37,3 +36,6 @@ inspections:
- "scope#file:buildSrc/*"
- inspection: JavadocReference
severity: WARNING # It has default ERROR severity. It's understandable for unresolved references in javadocs for editor but not on CI.
- inspection: MissortedModifiers
options:
m_requireAnnotationsFirst: false

0 comments on commit bc7c8a5

Please sign in to comment.