Skip to content

Commit 4609467

Browse files
committedMar 30, 2024
update editorconfig
1 parent 6f68455 commit 4609467

File tree

10 files changed

+32
-10
lines changed

10 files changed

+32
-10
lines changed
 

‎.editorconfig

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
[*.{kt,kts}]
2-
max_line_length = off
2+
max_line_length = off
3+
ktlint_code_style = android_studio
4+
ktlint_standard_property-naming = disabled
5+
ktlint_function_naming_ignore_when_annotated_with = Composable
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package dev.anilbeesetti.nextplayer.core.model
22

33
enum class DecoderPriority {
4-
PREFER_DEVICE, PREFER_APP, DEVICE_ONLY
4+
PREFER_DEVICE,
5+
PREFER_APP,
6+
DEVICE_ONLY
57
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
package dev.anilbeesetti.nextplayer.core.model
22

33
enum class Font {
4-
DEFAULT, MONOSPACE, SANS_SERIF, SERIF
4+
DEFAULT,
5+
MONOSPACE,
6+
SANS_SERIF,
7+
SERIF
58
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package dev.anilbeesetti.nextplayer.core.model
22

33
enum class Resume {
4-
YES, NO
4+
YES,
5+
NO
56
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
package dev.anilbeesetti.nextplayer.core.model
22

33
enum class SortBy {
4-
TITLE, LENGTH, PATH, SIZE, DATE
4+
TITLE,
5+
LENGTH,
6+
PATH,
7+
SIZE,
8+
DATE
59
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
package dev.anilbeesetti.nextplayer.core.model
22

33
enum class SortOrder {
4-
ASCENDING, DESCENDING
4+
ASCENDING,
5+
DESCENDING
56
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
package dev.anilbeesetti.nextplayer.core.model
22

33
enum class ThemeConfig {
4-
SYSTEM, OFF, ON
4+
SYSTEM,
5+
OFF,
6+
ON
57
}
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
package dev.anilbeesetti.nextplayer.core.model
22

33
enum class VideoZoom {
4-
BEST_FIT, STRETCH, CROP, HUNDRED_PERCENT
4+
BEST_FIT,
5+
STRETCH,
6+
CROP,
7+
HUNDRED_PERCENT
58
}

‎core/ui/src/main/java/dev/anilbeesetti/nextplayer/core/ui/theme/Type.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@ val Typography = Typography(
3030
lineHeight = 16.sp,
3131
letterSpacing = 0.5.sp
3232
)
33-
*/
33+
*/
3434
)

‎feature/player/src/main/java/dev/anilbeesetti/nextplayer/feature/player/utils/PlayerGestureHelper.kt

+4-1
Original file line numberDiff line numberDiff line change
@@ -299,5 +299,8 @@ class PlayerGestureHelper(
299299
inline val Int.toMillis get() = this * 1000
300300

301301
enum class GestureAction {
302-
SWIPE, SEEK, ZOOM, FAST_PLAYBACK
302+
SWIPE,
303+
SEEK,
304+
ZOOM,
305+
FAST_PLAYBACK
303306
}

0 commit comments

Comments
 (0)
Please sign in to comment.