aboutsummaryrefslogtreecommitdiff
path: root/detekt-baselines
diff options
context:
space:
mode:
authorHarsh Shandilya <me@msfjarvis.dev>2022-07-17 13:26:51 +0530
committerHarsh Shandilya <me@msfjarvis.dev>2022-07-17 13:57:13 +0530
commit584670ae5bf9373aaa12f82d6eab417929d6bca7 (patch)
tree6757eedfe2ddd8a765d41410420b36c74e502640 /detekt-baselines
parent5d2a8e9aba8a15abd8971b4dd69d2a52eca3e5ba (diff)
detekt: re-baseline for updated config
Diffstat (limited to 'detekt-baselines')
-rw-r--r--detekt-baselines/app.xml12
-rw-r--r--detekt-baselines/autofill-parser.xml4
-rw-r--r--detekt-baselines/format-common.xml1
-rw-r--r--detekt-baselines/ui-compose.xml41
4 files changed, 9 insertions, 49 deletions
diff --git a/detekt-baselines/app.xml b/detekt-baselines/app.xml
index 0f5ba452..be37b720 100644
--- a/detekt-baselines/app.xml
+++ b/detekt-baselines/app.xml
@@ -35,7 +35,6 @@
<ID>LongMethod:RepositorySettings.kt$RepositorySettings$override fun provideSettings(builder: PreferenceScreen.Builder)</ID>
<ID>LoopWithTooManyJumpStatements:AutofillMatcher.kt$AutofillMatcher.Companion$for ((key, value) in prefs.all) { if (!key.startsWith(PREFERENCE_PREFIX_MATCHES)) continue // We know that preferences starting with `PREFERENCE_PREFIX_MATCHES` were // created with `putStringSet`. @Suppress("UNCHECKED_CAST") val oldMatches = value as? Set&lt;String> if (oldMatches == null) { logcat(WARN) { "Failed to read matches for $key" } continue } // Delete all matches for file locations that are going to be overwritten, then // transfer matches over to the files at their new locations. val newMatches = oldMatches .asSequence() .minus(deletePathList) .minus(oldNewPathMap.values) .map { match -> val newPath = oldNewPathMap[match] ?: return@map match logcat { "Updating match for $key: $match --> $newPath" } newPath } .toSet() if (newMatches != oldMatches) prefs.edit { putStringSet(key, newMatches) } }</ID>
<ID>LoopWithTooManyJumpStatements:ErrorMessages.kt$ErrorMessages$while (cause.cause != null) { if (cause is GitException) break val nextCause = cause.cause!! if (nextCause is RemoteException) break cause = nextCause }</ID>
- <ID>MagicNumber:AndroidExtensions.kt$26</ID>
<ID>MagicNumber:Api30AutofillResponseBuilder.kt$Api30AutofillResponseBuilder$30</ID>
<ID>MagicNumber:AutofillDecryptActivity.kt$AutofillDecryptActivity$26</ID>
<ID>MagicNumber:AutofillDecryptActivity.kt$AutofillDecryptActivity.Companion$31</ID>
@@ -71,15 +70,12 @@
<ID>MagicNumber:GitLogAdapter.kt$8</ID>
<ID>MagicNumber:GitServerConfigActivity.kt$GitServerConfigActivity$500</ID>
<ID>MagicNumber:LaunchActivity.kt$LaunchActivity$500L</ID>
- <ID>MagicNumber:MiscSettings.kt$MiscSettings$26</ID>
<ID>MagicNumber:OreoAutofillService.kt$OreoAutofillService$26</ID>
<ID>MagicNumber:OreoAutofillService.kt$OreoAutofillService$28</ID>
<ID>MagicNumber:OreoAutofillService.kt$OreoAutofillService$30</ID>
<ID>MagicNumber:PasswordCreationActivity.kt$PasswordCreationActivity$28</ID>
<ID>MagicNumber:PasswordExportService.kt$PasswordExportService$1024</ID>
<ID>MagicNumber:PasswordExportService.kt$PasswordExportService$26</ID>
- <ID>MagicNumber:PasswordFragment.kt$PasswordFragment.&lt;no name provided>$100</ID>
- <ID>MagicNumber:PasswordFragment.kt$PasswordFragment.&lt;no name provided>$90f</ID>
<ID>MagicNumber:PasswordGeneratorDialogFragment.kt$PasswordGeneratorDialogFragment$20</ID>
<ID>MagicNumber:PasswordItemRecyclerAdapter.kt$PasswordItemRecyclerAdapter.PasswordItemViewHolder$0.7f</ID>
<ID>MagicNumber:ProxySelectorActivity.kt$ProxySelectorActivity$29</ID>
@@ -89,7 +85,6 @@
<ID>MagicNumber:ShortcutHandler.kt$ShortcutHandler$26</ID>
<ID>MagicNumber:SshKey.kt$SshKey$100_000</ID>
<ID>MagicNumber:SshKey.kt$SshKey$15</ID>
- <ID>MagicNumber:SshKey.kt$SshKey$28</ID>
<ID>MagicNumber:SshKey.kt$SshKey$30</ID>
<ID>MagicNumber:SshKey.kt$SshKey.Algorithm.Ecdsa$256</ID>
<ID>MagicNumber:SshKey.kt$SshKey.Algorithm.Ecdsa$28</ID>
@@ -132,6 +127,13 @@
<ID>TooManyFunctions:SearchableRepositoryViewModel.kt$SearchableRepositoryViewModel : AndroidViewModel</ID>
<ID>TooManyFunctions:SshjConfig.kt$AbstractLogger : Logger</ID>
<ID>TooManyFunctions:SshjConfig.kt$LogcatLoggerFactory$LogcatLogger : AbstractLogger</ID>
+ <ID>TopLevelPropertyNaming:AutofillMatcher.kt$private const val PREFERENCES_AUTOFILL_APP_MATCHES = "oreo_autofill_app_matches"</ID>
+ <ID>TopLevelPropertyNaming:AutofillMatcher.kt$private const val PREFERENCES_AUTOFILL_WEB_MATCHES = "oreo_autofill_web_matches"</ID>
+ <ID>TopLevelPropertyNaming:Extensions.kt$/** The default OpenPGP provider for the app */ const val OPENPGP_PROVIDER = "org.sufficientlysecure.keychain"</ID>
+ <ID>TopLevelPropertyNaming:PasswordStore.kt$const val PASSWORD_FRAGMENT_TAG = "PasswordsList"</ID>
+ <ID>TopLevelPropertyNaming:SshKey.kt$private const val ANDROIDX_SECURITY_KEYSET_PREF_NAME = "androidx_sshkey_keyset_prefs"</ID>
+ <ID>TopLevelPropertyNaming:SshKey.kt$private const val KEYSTORE_ALIAS = "sshkey"</ID>
+ <ID>TopLevelPropertyNaming:SshKey.kt$private const val PROVIDER_ANDROID_KEY_STORE = "AndroidKeyStore"</ID>
<ID>UnusedPrivateMember:PasswordStore.kt$PasswordStore$private val directorySelectAction = registerForActivityResult(StartActivityForResult()) { result -> if (result.resultCode == RESULT_OK) { checkLocalRepository() } }</ID>
<ID>UnusedPrivateMember:PasswordStore.kt$PasswordStore$private val storagePermissionRequest = registerForActivityResult(RequestPermission()) { granted -> if (granted) checkLocalRepository() }</ID>
<ID>UseCheckOrError:CredentialFinder.kt$CredentialFinder$throw IllegalStateException("Only SshKey and Password connection mode ask for passwords")</ID>
diff --git a/detekt-baselines/autofill-parser.xml b/detekt-baselines/autofill-parser.xml
index 80d2ae0f..a7726c93 100644
--- a/detekt-baselines/autofill-parser.xml
+++ b/detekt-baselines/autofill-parser.xml
@@ -24,7 +24,6 @@
<ID>MagicNumber:AutofillScenario.kt$AutofillScenario$26</ID>
<ID>MagicNumber:AutofillScenario.kt$ClassifiedAutofillScenario$26</ID>
<ID>MagicNumber:AutofillScenario.kt$GenericAutofillScenario$26</ID>
- <ID>MagicNumber:AutofillStrategy.kt$26</ID>
<ID>MagicNumber:AutofillStrategyDsl.kt$26</ID>
<ID>MagicNumber:AutofillStrategyDsl.kt$AutofillRule$26</ID>
<ID>MagicNumber:AutofillStrategyDsl.kt$AutofillStrategy$26</ID>
@@ -34,8 +33,6 @@
<ID>MagicNumber:FeatureAndTrustDetection.kt$26</ID>
<ID>MagicNumber:FeatureAndTrustDetection.kt$28</ID>
<ID>MagicNumber:FormField.kt$FormField$26</ID>
- <ID>MagicNumber:FormField.kt$FormField$6</ID>
- <ID>MagicNumber:FormField.kt$FormField$8</ID>
<ID>MagicNumber:FormField.kt$FormField.Companion$26</ID>
<ID>MagicNumber:PublicSuffixListCache.kt$29</ID>
<ID>MaxLineLength:FeatureAndTrustDetection.kt$/* In order to add a new browser, do the following: 1. Obtain the .apk from a trusted source. For example, download it from the Play Store on your phone and use adb pull to get it onto your computer. We will assume that it is called browser.apk. 2. Run aapt dump badging browser.apk | grep package: | grep -Eo " name='[a-zA-Z0-9_\.]*" | cut -c8- to obtain the package name (actually, the application ID) of the app in the .apk. 3. Run apksigner verify --print-certs browser.apk | grep "#1 certificate SHA-256" | grep -Eo "[a-f0-9]{64}" | tr -d '\n' | xxd -r -p | base64 to calculate the hash of browser.apk's first signing certificate. Note: This will only work if the apk has a single signing certificate. Apps with multiple signers are very rare, so there is probably no need to add them. Refer to computeCertificatesHash to learn how the hash would be computed in this case. 4. Verify the package name and the hash, for example by asking other people to repeat the steps above. 5. Add an entry with the browser apps's package name and the hash to TRUSTED_BROWSER_CERTIFICATE_HASH. 6. Optionally, try adding the browser's package name to BROWSERS_WITH_SAVE_SUPPORT and check whether a save request to Password Store is triggered when you submit a registration form. 7. Optionally, try adding the browser's package name to BROWSERS_WITH_MULTI_ORIGIN_SUPPORT and check whether it correctly distinguishes web origins even if iframes are present on the page. You can use https://fabianhenneke.github.io/Android-Password-Store/ as a test form. */</ID>
@@ -48,6 +45,7 @@
<ID>ReturnCount:PublicSuffixListData.kt$PublicSuffixListData$private fun findExceptionMatch(labels: List&lt;ByteArray>, wildcardMatch: String?): String?</ID>
<ID>ReturnCount:PublicSuffixListData.kt$PublicSuffixListData$private fun findMatchingRule(domainLabels: List&lt;String>): List&lt;String></ID>
<ID>TooGenericExceptionCaught:AutofillScenario.kt$AutofillScenario.Companion$e: Throwable</ID>
+ <ID>TopLevelPropertyNaming:PublicSuffixListLoader.kt$private const val PUBLIC_SUFFIX_LIST_FILE = "publicsuffixes"</ID>
<ID>UnusedPrivateMember:AutofillStrategy.kt$private inline fun &lt;T> Pair&lt;T, T>.none(predicate: T.() -> Boolean)</ID>
<ID>UnusedPrivateMember:FormField.kt$FormField$// Ignored for now, see excludedByHints private val excludedByAutocompleteHint = htmlAutocomplete == "off"</ID>
</CurrentIssues>
diff --git a/detekt-baselines/format-common.xml b/detekt-baselines/format-common.xml
index 42e17ed0..9ff123b7 100644
--- a/detekt-baselines/format-common.xml
+++ b/detekt-baselines/format-common.xml
@@ -10,7 +10,6 @@
<ID>MagicNumber:Otp.kt$Otp$6</ID>
<ID>MagicNumber:Otp.kt$Otp$8</ID>
<ID>MagicNumber:PasswordEntry.kt$PasswordEntry$1000</ID>
- <ID>MagicNumber:PasswordEntry.kt$PasswordEntry$1000L</ID>
<ID>MatchingDeclarationName:Clocks.kt$UserClock : Clock</ID>
<ID>MatchingDeclarationName:TestClocks.kt$TestUserClock : UserClock</ID>
<ID>MaxLineLength:PasswordEntryTest.kt$PasswordEntryTest.Companion$"otpauth://totp/ACME%20Co:john@example.com?secret=HXDMVJECJJWSRB3HWIZR4IFUGFTMXBOZ&amp;issuer=ACME%20Co&amp;algorithm=SHA1&amp;digits=6&amp;period=30"</ID>
diff --git a/detekt-baselines/ui-compose.xml b/detekt-baselines/ui-compose.xml
index 684196b9..c373eea4 100644
--- a/detekt-baselines/ui-compose.xml
+++ b/detekt-baselines/ui-compose.xml
@@ -1,44 +1,5 @@
<?xml version='1.0' encoding='UTF-8'?>
<SmellBaseline>
<ManuallySuppressedIssues/>
- <CurrentIssues>
- <ID>FunctionNaming:Theme.kt$@Composable public fun APSTheme( useDarkTheme: Boolean = isSystemInDarkTheme(), content: @Composable () -> Unit, )</ID>
- <ID>MagicNumber:Color.kt$0xFF001e30</ID>
- <ID>MagicNumber:Color.kt$0xFF001e31</ID>
- <ID>MagicNumber:Color.kt$0xFF00344e</ID>
- <ID>MagicNumber:Color.kt$0xFF003450</ID>
- <ID>MagicNumber:Color.kt$0xFF003e5b</ID>
- <ID>MagicNumber:Color.kt$0xFF004b70</ID>
- <ID>MagicNumber:Color.kt$0xFF004c6f</ID>
- <ID>MagicNumber:Color.kt$0xFF006494</ID>
- <ID>MagicNumber:Color.kt$0xFF006591</ID>
- <ID>MagicNumber:Color.kt$0xFF0b1d29</ID>
- <ID>MagicNumber:Color.kt$0xFF1a1c1e</ID>
- <ID>MagicNumber:Color.kt$0xFF21323e</ID>
- <ID>MagicNumber:Color.kt$0xFF2e3133</ID>
- <ID>MagicNumber:Color.kt$0xFF384956</ID>
- <ID>MagicNumber:Color.kt$0xFF410001</ID>
- <ID>MagicNumber:Color.kt$0xFF41474d</ID>
- <ID>MagicNumber:Color.kt$0xFF4f606e</ID>
- <ID>MagicNumber:Color.kt$0xFF680003</ID>
- <ID>MagicNumber:Color.kt$0xFF72787e</ID>
- <ID>MagicNumber:Color.kt$0xFF85ceff</ID>
- <ID>MagicNumber:Color.kt$0xFF8aceff</ID>
- <ID>MagicNumber:Color.kt$0xFF8b9197</ID>
- <ID>MagicNumber:Color.kt$0xFF930006</ID>
- <ID>MagicNumber:Color.kt$0xFFb7c9d9</ID>
- <ID>MagicNumber:Color.kt$0xFFba1b1b</ID>
- <ID>MagicNumber:Color.kt$0xFFc1c7ce</ID>
- <ID>MagicNumber:Color.kt$0xFFc7e6ff</ID>
- <ID>MagicNumber:Color.kt$0xFFc8e6ff</ID>
- <ID>MagicNumber:Color.kt$0xFFd3e5f5</ID>
- <ID>MagicNumber:Color.kt$0xFFdde3ea</ID>
- <ID>MagicNumber:Color.kt$0xFFe1e2e5</ID>
- <ID>MagicNumber:Color.kt$0xFFf0f0f3</ID>
- <ID>MagicNumber:Color.kt$0xFFfcfcff</ID>
- <ID>MagicNumber:Color.kt$0xFFffb4a9</ID>
- <ID>MagicNumber:Color.kt$0xFFffdad4</ID>
- <ID>MagicNumber:Color.kt$0xFFffffff</ID>
- <ID>MagicNumber:Type.kt$0.25</ID>
- </CurrentIssues>
+ <CurrentIssues/>
</SmellBaseline>