Enable detekt rules UnderscoresInNumericLiterals and fix existing issues.
This commit is contained in:
parent
6fff373613
commit
15ac81d32a
5 changed files with 10 additions and 6 deletions
|
|
@ -62,9 +62,9 @@ class VectorUncaughtExceptionHandler(
|
||||||
totalSize = info.totalMemory()
|
totalSize = info.totalMemory()
|
||||||
usedSize = totalSize - freeSize
|
usedSize = totalSize - freeSize
|
||||||
}
|
}
|
||||||
append("usedSize " + usedSize / 1048576L + " MB\n")
|
append("usedSize " + usedSize / 1_048_576L + " MB\n")
|
||||||
append("freeSize " + freeSize / 1048576L + " MB\n")
|
append("freeSize " + freeSize / 1_048_576L + " MB\n")
|
||||||
append("totalSize " + totalSize / 1048576L + " MB\n")
|
append("totalSize " + totalSize / 1_048_576L + " MB\n")
|
||||||
append("Thread: ")
|
append("Thread: ")
|
||||||
append(thread.name)
|
append(thread.name)
|
||||||
append(", Exception: ")
|
append(", Exception: ")
|
||||||
|
|
|
||||||
|
|
@ -44,7 +44,7 @@ internal fun DatePickerPreviewDark() {
|
||||||
@Composable
|
@Composable
|
||||||
private fun ContentToPreview() {
|
private fun ContentToPreview() {
|
||||||
val state = rememberDatePickerState(
|
val state = rememberDatePickerState(
|
||||||
initialSelectedDateMillis = 1672578000000L,
|
initialSelectedDateMillis = 1_672_578_000_000L,
|
||||||
)
|
)
|
||||||
AlertDialogContent(
|
AlertDialogContent(
|
||||||
buttons = { /*TODO*/ },
|
buttons = { /*TODO*/ },
|
||||||
|
|
|
||||||
|
|
@ -27,7 +27,7 @@ import java.util.Date
|
||||||
|
|
||||||
class TimelineEncryptedHistoryPostProcessorTest {
|
class TimelineEncryptedHistoryPostProcessorTest {
|
||||||
|
|
||||||
private val defaultLastLoginTimestamp = Date(1689061264L)
|
private val defaultLastLoginTimestamp = Date(1_689_061_264L)
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
fun `given an unencrypted room, nothing is done`() {
|
fun `given an unencrypted room, nothing is done`() {
|
||||||
|
|
|
||||||
|
|
@ -25,7 +25,7 @@ class NotificationIdProviderTest {
|
||||||
@Test
|
@Test
|
||||||
fun `test notification id provider`() {
|
fun `test notification id provider`() {
|
||||||
val sut = NotificationIdProvider()
|
val sut = NotificationIdProvider()
|
||||||
val offsetForASessionId = 305410
|
val offsetForASessionId = 305_410
|
||||||
assertThat(sut.getSummaryNotificationId(A_SESSION_ID)).isEqualTo(offsetForASessionId + 0)
|
assertThat(sut.getSummaryNotificationId(A_SESSION_ID)).isEqualTo(offsetForASessionId + 0)
|
||||||
assertThat(sut.getRoomMessagesNotificationId(A_SESSION_ID)).isEqualTo(offsetForASessionId + 1)
|
assertThat(sut.getRoomMessagesNotificationId(A_SESSION_ID)).isEqualTo(offsetForASessionId + 1)
|
||||||
assertThat(sut.getRoomEventNotificationId(A_SESSION_ID)).isEqualTo(offsetForASessionId + 2)
|
assertThat(sut.getRoomEventNotificationId(A_SESSION_ID)).isEqualTo(offsetForASessionId + 2)
|
||||||
|
|
|
||||||
|
|
@ -56,6 +56,10 @@ style:
|
||||||
active: true
|
active: true
|
||||||
OptionalUnit:
|
OptionalUnit:
|
||||||
active: true
|
active: true
|
||||||
|
UnderscoresInNumericLiterals:
|
||||||
|
active: true
|
||||||
|
acceptableLength: 4
|
||||||
|
allowNonStandardGrouping: false
|
||||||
|
|
||||||
coroutines:
|
coroutines:
|
||||||
GlobalCoroutineUsage:
|
GlobalCoroutineUsage:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue