-
-
Notifications
You must be signed in to change notification settings - Fork 89
/
qodana.yaml
43 lines (43 loc) · 1.46 KB
/
qodana.yaml
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
version: "1.0"
linter: jetbrains/qodana-jvm-community:latest
profile:
path: .idea/inspectionProfiles/Project_Default.xml
failThreshold: 0
exclude: # Some of these are valid inspections but not important or accurate enough to fail the build
- name: EditorConfigUnusedDeclaration
- name: HtmlDeprecatedTag
- name: HtmlRequiredLangAttribute
- name: MemberVisibilityCanBePrivate
- name: UnstableApiUsage
- name: unused
- name: UnusedSymbol
- name: XmlHighlighting
- name: XmlUnusedNamespaceDeclaration
- name: All
paths:
- gen
- .github
- results
- build
- test
- src/nl/hannahsten/texifyidea/action/preview/PreviewForm.form
# The class is unused, see TexifyProjectConfigurable
- src/nl/hannahsten/texifyidea/settings/TexifyProjectSettings.kt
- name: BooleanMethodIsAlwaysInverted
- name: SpellCheckingInspection
- name: UseJBColor # In many cases we're not defining theme-dependent colors
- name: HtmlDeprecatedAttribute
- name: LanguageDetectionInspection
- name: GrazieInspection
- name: CheckDependencyLicenses # TeXiFy violates all sorts of licenses, don't care
# Qodana false positives:
- name: EmptyMethod
- name: SameReturnValue
- name: UnusedProperty
- name: EditorConfigKeyCorrectness
- name: KotlinConstantConditions
- name: UnusedReceiverParameter
- name: RedundantNullableReturnType
- name: UselessCallOnCollection
- name: KDocUnresolvedReference
- name: KotlinDeprecation