diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-07-20 01:29:12 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-20 01:29:12 +0530 |
commit | ade73fd5bc38e8e1f1a4ab3b44132da63f2f7982 (patch) | |
tree | 3852ad5e4ec70026daba67801fe5e5294dda97e4 /config | |
parent | 9cd2f5f446004e7adb49947af78caba7d9f16a63 (diff) |
Compile against SDK 33 (#2023)
* Compile against SDK 33
* autofill-parser: fix warnings for SDK 33 upgrade
* app: fix warnings for SDK 33 upgrade
* Mark all clipboard content as sensitive from crypto activities
* Skip Snackbar on Android 13 and above
* detekt: raise `TooManyFunctions` limit to 15
Diffstat (limited to 'config')
-rw-r--r-- | config/detekt/detekt.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/config/detekt/detekt.yml b/config/detekt/detekt.yml index 69a60690..78d50515 100644 --- a/config/detekt/detekt.yml +++ b/config/detekt/detekt.yml @@ -158,11 +158,11 @@ complexity: TooManyFunctions: active: true excludes: ['**/test/**', '**/androidTest/**', '**/commonTest/**', '**/jvmTest/**', '**/jsTest/**', '**/iosTest/**'] - thresholdInFiles: 11 - thresholdInClasses: 11 - thresholdInInterfaces: 11 - thresholdInObjects: 11 - thresholdInEnums: 11 + thresholdInFiles: 15 + thresholdInClasses: 15 + thresholdInInterfaces: 15 + thresholdInObjects: 15 + thresholdInEnums: 15 ignoreDeprecated: false ignorePrivate: false ignoreOverridden: false |