Update dependency com.pinterest.ktlint:ktlint-cli to v1.8.0 (#2708)

Co-authored-by: AntsyLich <59261191+AntsyLich@users.noreply.github.com>
This commit is contained in:
Mend Renovate
2025-11-23 07:55:54 +00:00
committed by GitHub
parent e6ca458e1f
commit 13552c5ffa
7 changed files with 7 additions and 6 deletions

View File

@@ -29,3 +29,4 @@ ktlint_standard_function-expression-body = disabled
ktlint_standard_function-signature = disabled
ktlint_standard_type-argument-comment = disabled
ktlint_standard_type-parameter-comment = disabled
ktlint_standard_blank-line-between-when-conditions = disabled

View File

@@ -28,7 +28,7 @@ internal fun ColumnScope.ColorFilterPage(screenModel: ReaderSettingsScreenModel)
pref = screenModel.preferences.customBrightness(),
)
/**
/*
* Sets the brightness of the screen. Range is [-75, 100].
* From -75 to -1 a semi-transparent black view is shown at the top with the minimum brightness.
* From 1 to 100 it sets that value as brightness.

View File

@@ -833,7 +833,7 @@ class ReaderActivity : BaseActivity() {
private val grayBackgroundColor = Color.rgb(0x20, 0x21, 0x25)
/**
/*
* Initializes the reader subscriptions.
*/
init {

View File

@@ -33,7 +33,7 @@ abstract class WebViewInterceptor(
// Crashes on some devices. We skip this in some cases since the only impact is slower
// WebView init in those rare cases.
// See https://bugs.chromium.org/p/chromium/issues/detail?id=1279562
if (DeviceUtil.isMiui || Build.VERSION.SDK_INT == Build.VERSION_CODES.S && DeviceUtil.isSamsung) {
if (DeviceUtil.isMiui || (Build.VERSION.SDK_INT == Build.VERSION_CODES.S && DeviceUtil.isSamsung)) {
return@lazy
}

View File

@@ -8,7 +8,7 @@ sqldelight = "2.2.1"
sqlite = "2.6.2"
voyager = "1.1.0-beta03"
spotless = "8.1.0"
ktlint-core = "1.7.1"
ktlint-core = "1.8.0"
firebase-bom = "34.6.0"
markdown = "0.38.1"
junit = "6.0.1"

View File

@@ -14,7 +14,7 @@
* limitations under the License.
*/
/**
/*
* Straight copy from Compose M3 for Button fork
*/

View File

@@ -24,7 +24,7 @@ package tachiyomi.presentation.core.util
* SOFTWARE.
*/
/**
/*
* Code taken from https://gist.github.com/mxalbert1996/33a360fcab2105a31e5355af98216f5a
* with some modifications to handle contentPadding.
*