Skip to content

Commit

Permalink
Update dependency com.pinterest.ktlint:ktlint-cli to v1.4.0
Browse files Browse the repository at this point in the history
Co-authored-by: Mend Renovate <bot@renovateapp.com>
  • Loading branch information
AntsyLich and renovate-bot committed Oct 26, 2024
1 parent 2bf7ef5 commit 140083e
Show file tree
Hide file tree
Showing 17 changed files with 18 additions and 18 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@file:Suppress("PropertyName", "ktlint:standard:property-naming")
@file:Suppress("PropertyName")

package eu.kanade.tachiyomi.data.database.models

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@file:Suppress("PropertyName", "ktlint:standard:property-naming")
@file:Suppress("PropertyName")

package eu.kanade.tachiyomi.data.database.models

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@file:Suppress("PropertyName", "ktlint:standard:property-naming")
@file:Suppress("PropertyName")

package eu.kanade.tachiyomi.data.database.models

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@file:Suppress("PropertyName", "ktlint:standard:property-naming")
@file:Suppress("PropertyName")

package eu.kanade.tachiyomi.data.database.models

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@file:Suppress("PropertyName", "ktlint:standard:property-naming")
@file:Suppress("PropertyName")

package eu.kanade.tachiyomi.data.track.model

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@file:Suppress("FunctionName", "ktlint:standard:function-naming")
@file:Suppress("FunctionName")

package eu.kanade.tachiyomi.network

Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sqldelight = "2.0.2"
sqlite = "2.4.0"
voyager = "1.0.0"
spotless = "6.25.0"
ktlint-core = "1.3.1"
ktlint-core = "1.4.0"
firebase-bom = "33.5.1"

[libraries]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,5 @@ val CustomIcons.Discord: ImageVector
return _discord!!
}

@Suppress("ObjectPropertyName", "ktlint:standard:backing-property-naming")
@Suppress("ObjectPropertyName")
private var _discord: ImageVector? = null
Original file line number Diff line number Diff line change
Expand Up @@ -59,5 +59,5 @@ val CustomIcons.Facebook: ImageVector
return _facebook!!
}

@Suppress("ObjectPropertyName", "ktlint:standard:backing-property-naming")
@Suppress("ObjectPropertyName")
private var _facebook: ImageVector? = null
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,5 @@ val CustomIcons.Github: ImageVector
return _github!!
}

@Suppress("ObjectPropertyName", "ktlint:standard:backing-property-naming")
@Suppress("ObjectPropertyName")
private var _github: ImageVector? = null
Original file line number Diff line number Diff line change
Expand Up @@ -90,5 +90,5 @@ val CustomIcons.Reddit: ImageVector
return _reddit!!
}

@Suppress("ObjectPropertyName", "ktlint:standard:backing-property-naming")
@Suppress("ObjectPropertyName")
private var _reddit: ImageVector? = null
Original file line number Diff line number Diff line change
Expand Up @@ -57,5 +57,5 @@ val CustomIcons.X: ImageVector
return _x!!
}

@Suppress("ObjectPropertyName", "ktlint:standard:backing-property-naming")
@Suppress("ObjectPropertyName")
private var _x: ImageVector? = null
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@file:Suppress("PropertyName", "ktlint:standard:property-naming")
@file:Suppress("PropertyName")

package eu.kanade.tachiyomi.source.model

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@file:Suppress("PropertyName", "ktlint:standard:property-naming")
@file:Suppress("PropertyName")

package eu.kanade.tachiyomi.source.model

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@file:Suppress("PropertyName", "ktlint:standard:property-naming")
@file:Suppress("PropertyName")

package eu.kanade.tachiyomi.source.model

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
@file:Suppress("PropertyName", "ktlint:standard:property-naming")
@file:Suppress("PropertyName")

package eu.kanade.tachiyomi.source.model

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ actual class LocalSource(
private val json: Json by injectLazy()
private val xml: XML by injectLazy()

@Suppress("PrivatePropertyName", "ktlint:standard:property-naming")
@Suppress("PrivatePropertyName")
private val PopularFilters = FilterList(OrderBy.Popular(context))

@Suppress("PrivatePropertyName", "ktlint:standard:property-naming")
@Suppress("PrivatePropertyName")
private val LatestFilters = FilterList(OrderBy.Latest(context))

override val name: String = context.stringResource(MR.strings.local_source)
Expand Down

0 comments on commit 140083e

Please sign in to comment.