Skip to content

Commit f602313

Browse files
style: ktlint 적용
1 parent ed07b94 commit f602313

5 files changed

Lines changed: 8 additions & 6 deletions

File tree

app/src/main/java/com/flint/core/designsystem/component/listView/OttHorizontalList.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import com.flint.core.common.extension.dropShadow
2020
import com.flint.core.designsystem.theme.FlintTheme
2121
import com.flint.domain.type.OttType
2222

23-
private const val MaxOttShowingCount = 2
23+
private const val MAX_OTT_SHOWING_COUNT = 2
2424

2525
@Composable
2626
fun OttHorizontalList(
@@ -39,8 +39,8 @@ fun OttHorizontalList(
3939
}
4040

4141
val etcOttText =
42-
if (ottList.size > MaxOttShowingCount) {
43-
"+${ottList.size - MaxOttShowingCount}"
42+
if (ottList.size > MAX_OTT_SHOWING_COUNT) {
43+
"+${ottList.size - MAX_OTT_SHOWING_COUNT}"
4444
} else {
4545
"0"
4646
}

app/src/main/java/com/flint/core/designsystem/component/view/FlintSearchEmptyView.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ private fun FlintSearchEmptyViewPreview() {
4646
FlintTheme {
4747
FlintSearchEmptyView()
4848
}
49-
}
49+
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
package com.flint.data.local
2+
3+
class TokenStore

app/src/main/java/com/flint/presentation/collectioncreate/component/CollectionCreateFilmSection.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ private fun CollectionCreateFilmSectionImage(
102102
private fun CollectionCreateFilmSectionPreview() {
103103
FlintTheme {
104104
CollectionCreateFilmSection(
105-
imageUrl = "https://search.pstatic.net/common/?src=http%3A%2F%2Fimgnews.naver.net%2Fimage%2F5352%2F2024%2F12%2F20%2F20241220114927_2117531_1200_1800_20241220155206956.jpg&type=sc960_832",
105+
imageUrl = "https://buly.kr/DEaVFRZ",
106106
title = "해리포터 불의 잔 해리포터 불의 잔 해리포터 불의 잔 해리포터 불의 잔 해리포터 불의 잔 해리포터 불의 잔",
107107
director = "메롱",
108108
createdYear = "2005",

app/src/main/java/com/flint/presentation/collectioncreate/component/CollectionCreateFilmSelect.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ private fun CollectionCreateFilmSectionPreview() {
7777
CollectionCreateFilmSelect(
7878
onCheckClick = { isSelected = !isSelected },
7979
isSelected = isSelected,
80-
imageUrl = "https://search.pstatic.net/common/?src=http%3A%2F%2Fimgnews.naver.net%2Fimage%2F5352%2F2024%2F12%2F20%2F20241220114927_2117531_1200_1800_20241220155206956.jpg&type=sc960_832",
80+
imageUrl = "https://buly.kr/DEaVFRZ",
8181
title = "해리포터 불의 잔",
8282
director = "메롱",
8383
createdYear = "2005",

0 commit comments

Comments
 (0)