Skip to content

Commit cc7a40f

Browse files
committed
CHORE: ktlint 적용
1 parent 6b12a55 commit cc7a40f

5 files changed

Lines changed: 6 additions & 6 deletions

File tree

data/src/main/java/com/threegap/bitnagil/data/emotion/model/response/GetEmotionResponse.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ fun GetEmotionResponse.toDomain(): Emotion? {
1919
Emotion(
2020
emotionType = emotionMarbleType,
2121
emotionMarbleName = emotionMarbleName,
22-
imageUrl = imageUrl
22+
imageUrl = imageUrl,
2323
)
2424
} else {
2525
null

data/src/main/java/com/threegap/bitnagil/data/emotion/repositoryImpl/EmotionRepositoryImpl.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ package com.threegap.bitnagil.data.emotion.repositoryImpl
22

33
import com.threegap.bitnagil.data.emotion.datasource.EmotionDataSource
44
import com.threegap.bitnagil.data.emotion.model.response.toDomain
5-
import com.threegap.bitnagil.domain.emotion.model.EmotionRecommendRoutine
65
import com.threegap.bitnagil.domain.emotion.model.Emotion
76
import com.threegap.bitnagil.domain.emotion.model.EmotionChangeEvent
7+
import com.threegap.bitnagil.domain.emotion.model.EmotionRecommendRoutine
88
import com.threegap.bitnagil.domain.emotion.repository.EmotionRepository
99
import kotlinx.coroutines.flow.Flow
1010
import kotlinx.coroutines.flow.MutableSharedFlow

domain/src/main/java/com/threegap/bitnagil/domain/emotion/repository/EmotionRepository.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.threegap.bitnagil.domain.emotion.repository
22

3-
import com.threegap.bitnagil.domain.emotion.model.EmotionRecommendRoutine
43
import com.threegap.bitnagil.domain.emotion.model.Emotion
54
import com.threegap.bitnagil.domain.emotion.model.EmotionChangeEvent
5+
import com.threegap.bitnagil.domain.emotion.model.EmotionRecommendRoutine
66
import kotlinx.coroutines.flow.Flow
77

88
interface EmotionRepository {

presentation/src/main/java/com/threegap/bitnagil/presentation/emotion/EmotionScreen.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ private fun EmotionScreenPreview() {
236236
imageUrl = "https://bitnagil-s3.s3.ap-northeast-2.amazonaws.com/home_satisfaction.png",
237237
emotionMarbleName = "emotionMarbleName",
238238
offlineBackupImageResourceId = null,
239-
)
239+
),
240240
),
241241
isLoading = false,
242242
step = EmotionScreenStep.Emotion,
@@ -260,7 +260,7 @@ private fun EmotionRecommendRoutineScreenPreview() {
260260
imageUrl = "https://bitnagil-s3.s3.ap-northeast-2.amazonaws.com/home_satisfaction.png",
261261
emotionMarbleName = "emotionMarbleName",
262262
offlineBackupImageResourceId = null,
263-
)
263+
),
264264
),
265265
isLoading = false,
266266
step = EmotionScreenStep.RecommendRoutines,

presentation/src/main/java/com/threegap/bitnagil/presentation/emotion/model/EmotionUiModel.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package com.threegap.bitnagil.presentation.emotion.model
22

33
import android.os.Parcelable
4-
import com.threegap.bitnagil.domain.emotion.model.Emotion
54
import com.threegap.bitnagil.designsystem.R
5+
import com.threegap.bitnagil.domain.emotion.model.Emotion
66
import kotlinx.parcelize.Parcelize
77

88
@Parcelize

0 commit comments

Comments
 (0)