prism-android/detekt.yml
2026-02-02 23:25:04 -08:00

37 lines
560 B
YAML

build:
maxIssues: 1000
style:
MagicNumber:
active: false
ForbiddenComment:
active: false
UnusedImports:
active: false
UnusedPrivateMember:
active: true
UnusedPrivateClass:
active: true
MaxLineLength:
active: false
WildcardImport:
active: false
naming:
FunctionNaming:
active: true
ignoreAnnotated: ['Composable']
complexity:
LongMethod:
active: false
TooManyFunctions:
active: false
potential-bugs:
UnsafeCast:
active: false
comments:
CommentOverPrivateFunction:
active: false