forked from JetBrains/koog
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathqodana.yaml
More file actions
77 lines (73 loc) · 1.85 KB
/
qodana.yaml
File metadata and controls
77 lines (73 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
version: "1.0"
linter: jetbrains/qodana-jvm:2025.1
projectJDK: 17
# No implicit inspections:
profile:
name: empty
# Explicitly enabled inspections:
include:
# Code style (with quickfixes):
- name: CheckDependencyLicenses
- name: KotlinUnusedImport
- name: UsePropertyAccessSyntax
- name: ReplaceArrayOfWithLiteral
- name: SimplifiableCallChain
- name: ReplaceCallWithBinaryOperator
- name: NullableBooleanElvis
- name: ReplaceGetOrSet
- name: UseExpressionBody
- name: FilterIsInstanceCallWithClassLiteralArgument
- name: RedundantElvisReturnNull
- name: FoldInitializerAndIfToElvis
- name: IfThenToElvis
- name: IfThenToSafeAccess
- name: ReplaceJavaStaticMethodWithKotlinAnalog
- name: MoveLambdaOutsideParentheses
- name: UnclearPrecedenceOfBinaryExpression
- name: SimplifyNegatedBinaryExpression
- name: SortModifiers
- name: ProtectedInFinal
- name: RedundantElseInIf
- name: RedundantRunCatching
- name: LiftReturnOrAssignment
- name: SizeReplaceableByIsEmpty
- name: ConvertToStringTemplate
- name: IntroduceWhenSubject
- name: DeprecatedGradleDependency
# Vulnurability inspections:
- name: VulnerableLibrariesGlobal
# License audit:
- name: CheckDependencyLicenses
# Missing Kdocs:
- name: MissingKDocForPublicAPI
# Code coverage:
- name: JvmCoverageInspection
# Exclude from analysis:
exclude:
- name: All
paths:
- .devcontainer
- .github
- .gitignore
- .idea
- .kotlin
- build
- buildSrc
- docs
- name: JvmCoverageInspection
paths:
- .devcontainer
- .github
- .gitignore
- .idea
- .kotlin
- build
- buildSrc
- docs
- examples
- integration-tests
- name: CheckDependencyLicenses
paths:
- koog-spring-boot-starter
# Enable quick fixes for found issues
fixesStrategy: apply