-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetekt.yml
40 lines (37 loc) · 943 Bytes
/
detekt.yml
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
naming:
FunctionNaming:
ignoreAnnotated:
- Composable
complexity:
LongMethod:
ignoreAnnotated:
- Composable
LongParameterList:
ignoreDefaultParameters: true
ignoreAnnotated:
- Composable
CyclomaticComplexMethod:
ignoreSimpleWhenEntries: true
style:
UnusedPrivateMember:
ignoreAnnotated:
- Preview
- PreviewLightDark
- PreviewFontScale
WildcardImport:
active: false
MagicNumber:
ignoreAnnotated:
- Composable
# Formatting contains some overlapping rules with the standard rule set -> deactivate them so we do not get duplicate errors
formatting:
NoWildcardImports: # style>WildcardImport
active: false
Filename: # naming>MatchingDeclarationName
active: false
FinalNewline: # style>NewLineAtEndOfFile
active: false
MaximumLineLength: # style>MaxLineLength
active: false
ModifierOrdering: # style>ModifierOrder
active: false