-
Notifications
You must be signed in to change notification settings - Fork 189
/
detekt.yml
54 lines (51 loc) · 1.05 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
complexity:
active: true
LongParameterList:
active: true
threshold: 12
ignoreDefaultParameters: true
style:
active: true
MagicNumber:
active: false
ignorePropertyDeclaration: true
ignoreCompanionObjectPropertyDeclaration: true
UnusedPrivateMember:
active: true
ignoreAnnotated: ['Preview']
naming:
active: true
FunctionNaming:
active: true
functionPattern: '[a-zA-Z][a-zA-Z0-9]*'
ignoreAnnotated: ['Composable']
TopLevelPropertyNaming:
active: true
constantPattern: '[A-Z][A-Za-z0-9]*'
TwitterCompose:
ContentEmitterReturningValues:
active: true
ModifierComposable:
active: true
ModifierMissing:
active: true
ModifierReused:
active: true
ModifierWithoutDefault:
active: true
MultipleEmitters:
active: true
MutableParams:
active: true
ComposableNaming:
active: true
ComposableParamOrder:
active: true
PreviewPublic:
active: true
RememberMissing:
active: true
ViewModelForwarding:
active: true
ViewModelInjection:
active: true