-
-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6665 from thundernest/bump_ktlint_to_0.48.2
Bump ktlint to 0.48.2
- Loading branch information
Showing
500 changed files
with
2,364 additions
and
2,123 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ class ProvidersXmlDiscoveryTest : RobolectricTest() { | |
@Test | ||
fun discover_withUnknownDomain_shouldReturnNull() { | ||
val connectionSettings = providersXmlDiscovery.discover( | ||
"[email protected]" | ||
"[email protected]", | ||
) | ||
|
||
assertThat(connectionSettings).isNull() | ||
|
@@ -48,14 +48,14 @@ class ProvidersXmlDiscoveryTest : RobolectricTest() { | |
scopes = listOf("irrelevant"), | ||
authorizationEndpoint = "irrelevant", | ||
tokenEndpoint = "irrelevant", | ||
redirectUri = "irrelevant" | ||
redirectUri = "irrelevant", | ||
) | ||
|
||
return OAuthConfigurationProvider( | ||
configurations = mapOf( | ||
listOf("imap.gmail.com", "smtp.gmail.com") to googleConfig | ||
listOf("imap.gmail.com", "smtp.gmail.com") to googleConfig, | ||
), | ||
googleConfiguration = googleConfig | ||
googleConfiguration = googleConfig, | ||
) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,11 +162,11 @@ class ThunderbirdAutoconfigTest { | |
port = 993, | ||
security = ConnectionSecurity.SSL_TLS_REQUIRED, | ||
authType = AuthType.PLAIN, | ||
username = "[email protected]" | ||
) | ||
username = "[email protected]", | ||
), | ||
), | ||
listOf() | ||
) | ||
listOf(), | ||
), | ||
) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.