Skip to content

Commit af022dc

Browse files
committed
Update io.nlopez.compose.rules:ktlint:0.4.25
1 parent 34b2b97 commit af022dc

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

plugin-gradle/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -548,7 +548,7 @@ spotless {
548548
)
549549
.customRuleSets(
550550
listOf(
551-
"io.nlopez.compose.rules:ktlint:0.4.16"
551+
"io.nlopez.compose.rules:ktlint:0.4.25"
552552
)
553553
)
554554
}

plugin-gradle/src/test/java/com/diffplug/gradle/spotless/KotlinExtensionTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016-2024 DiffPlug
2+
* Copyright 2016-2025 DiffPlug
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -178,7 +178,7 @@ void withCustomRuleSetApply() throws IOException {
178178
" kotlin {",
179179
" ktlint(\"1.0.1\")",
180180
" .customRuleSets(listOf(",
181-
" \"io.nlopez.compose.rules:ktlint:0.4.16\"",
181+
" \"io.nlopez.compose.rules:ktlint:0.4.25\"",
182182
" ))",
183183
" .editorConfigOverride(mapOf(",
184184
" \"ktlint_function_naming_ignore_when_annotated_with\" to \"Composable\"",

plugin-maven/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -499,7 +499,7 @@ Additionally, `editorConfigOverride` options will override what's supplied in `.
499499
<ktlint_code_style>intellij_idea</ktlint_code_style>
500500
</editorConfigOverride>
501501
<customRuleSets> <!-- optional -->
502-
<value>io.nlopez.compose.rules:ktlint:0.4.16</value>
502+
<value>io.nlopez.compose.rules:ktlint:0.4.25</value>
503503
</customRuleSets>
504504
</ktlint>
505505
```

plugin-maven/src/test/java/com/diffplug/spotless/maven/kotlin/KtlintTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016-2024 DiffPlug
2+
* Copyright 2016-2025 DiffPlug
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -80,7 +80,7 @@ void testSetEditorConfigCanOverrideEditorConfigFile() throws Exception {
8080
void testWithCustomRuleSetApply() throws Exception {
8181
writePomWithKotlinSteps("<ktlint>\n" +
8282
" <customRuleSets>\n" +
83-
" <value>io.nlopez.compose.rules:ktlint:0.4.16</value>\n" +
83+
" <value>io.nlopez.compose.rules:ktlint:0.4.25</value>\n" +
8484
" </customRuleSets>\n" +
8585
" <editorConfigOverride>\n" +
8686
" <ktlint_function_naming_ignore_when_annotated_with>Composable</ktlint_function_naming_ignore_when_annotated_with>\n" +

0 commit comments

Comments
 (0)