Skip to content

Commit 2f0122f

Browse files
committed
chore: lint
1 parent 9b1a6f0 commit 2f0122f

File tree

5 files changed

+5
-1
lines changed

5 files changed

+5
-1
lines changed

app/src/main/java/to/bitkit/services/CoreService.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,7 @@ class CoreService @Inject constructor(
204204
// region Activity
205205
private const val CHUNK_SIZE = 50
206206

207+
@Suppress("LargeClass")
207208
class ActivityService(
208209
@Suppress("unused") private val coreService: CoreService, // used to ensure CoreService inits first
209210
private val cacheStore: CacheStore,

app/src/main/java/to/bitkit/ui/screens/wallets/activity/components/ActivityRow.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ fun ActivityRow(
160160
}
161161
}
162162

163+
@Suppress("CyclomaticComplexMethod")
163164
@Composable
164165
private fun TransactionStatusText(
165166
txType: PaymentType,

app/src/main/java/to/bitkit/ui/settings/lightning/LightningConnectionsViewModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ import to.bitkit.ui.shared.toast.ToastEventBus
4242
import to.bitkit.utils.Logger
4343
import javax.inject.Inject
4444

45-
@Suppress("LongParameterList")
45+
@Suppress("LongParameterList", "TooManyFunctions")
4646
@HiltViewModel
4747
class LightningConnectionsViewModel @Inject constructor(
4848
@ApplicationContext private val context: Context,

app/src/main/java/to/bitkit/viewmodels/ActivityDetailViewModel.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ import to.bitkit.repositories.LightningRepo
2121
import to.bitkit.utils.Logger
2222
import javax.inject.Inject
2323

24+
@Suppress("TooManyFunctions")
2425
@HiltViewModel
2526
class ActivityDetailViewModel @Inject constructor(
2627
@BgDispatcher private val bgDispatcher: CoroutineDispatcher,

app/src/main/java/to/bitkit/viewmodels/ActivityListViewModel.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ import to.bitkit.ui.screens.wallets.activity.components.ActivityTab
2626
import to.bitkit.utils.Logger
2727
import javax.inject.Inject
2828

29+
@Suppress("TooManyFunctions")
2930
@HiltViewModel
3031
class ActivityListViewModel @Inject constructor(
3132
@BgDispatcher private val bgDispatcher: CoroutineDispatcher,

0 commit comments

Comments
 (0)