Skip to content

Commit cda2628

Browse files
suppress ktlint
1 parent f75c1d7 commit cda2628

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed
Lines changed: 11 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@file:Suppress("PropertyName", "unused", "ktlint")
2+
13
package org.jetbrains.kotlinx.dataframe.samples.api
24

35
import org.jetbrains.kotlinx.dataframe.api.column
@@ -13,28 +15,28 @@ class RenameToCamelCase : DataFrameSampleHelper("rename", "api") {
1315

1416
val ColumnA by column<String>()
1517
val `COLUMN-C` by column<String>()
16-
18+
1719
@Test
1820
fun notebook_test_rename_3() {
1921
// SampleStart
2022
df
21-
// SampleEnd
22-
.saveDfHtmlSample()
23+
// SampleEnd
24+
.saveDfHtmlSample()
2325
}
24-
26+
2527
@Test
2628
fun notebook_test_rename_4() {
2729
// SampleStart
2830
df.rename { ColumnA and `COLUMN-C` }.toCamelCase()
29-
// SampleEnd
30-
.saveDfHtmlSample()
31+
// SampleEnd
32+
.saveDfHtmlSample()
3133
}
32-
34+
3335
@Test
3436
fun notebook_test_rename_5() {
3537
// SampleStart
3638
df.renameToCamelCase()
37-
// SampleEnd
38-
.saveDfHtmlSample()
39+
// SampleEnd
40+
.saveDfHtmlSample()
3941
}
4042
}

0 commit comments

Comments
 (0)