Skip to content

Commit 57eb676

Browse files
committed
Update io.nlopez.compose.rules:ktlint:0.4.25
1 parent 816f879 commit 57eb676

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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)