Files
ADB-Wi-Fi/detekt-config.yml
2020-09-20 18:14:11 +03:00

28 lines
623 B
YAML

# Default detekt configuration:
# https://github.com/detekt/detekt/blob/master/detekt-core/src/main/resources/default-detekt-config.yml
formatting:
Indentation:
active: true
NoWildcardImports:
active: false
complexity:
TooManyFunctions:
ignorePrivate: true
LongMethod:
active: true
threshold: 90
style:
MagicNumber:
active: false
WildcardImport:
active: false
excludeImports: ['java.util.*', 'kotlinx.coroutines.*', 'dev.polek.adbwifi.utils.*']
ReturnCount:
active: false
LoopWithTooManyJumpStatements:
active: false
performance:
SpreadOperator:
active: false