Skip to content

Commit 4b2fb73

Browse files
committed
Reformat code with ktfmt
1 parent acd223a commit 4b2fb73

233 files changed

Lines changed: 2948 additions & 3122 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

pom.xml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -625,6 +625,26 @@
625625
</configuration>
626626
</plugin>
627627

628+
<plugin>
629+
<groupId>com.diffplug.spotless</groupId>
630+
<artifactId>spotless-maven-plugin</artifactId>
631+
<version>2.44.3</version>
632+
<configuration>
633+
<kotlin>
634+
<ktfmt>
635+
<style>KOTLINLANG</style>
636+
</ktfmt>
637+
</kotlin>
638+
</configuration>
639+
<executions>
640+
<execution>
641+
<goals>
642+
<goal>check</goal>
643+
</goals>
644+
<phase>validate</phase>
645+
</execution>
646+
</executions>
647+
</plugin>
628648
</plugins>
629649
</build>
630650

src/main/kotlin/failchat/AppState.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ package failchat
22

33
enum class AppState {
44
SETTINGS,
5-
CHAT
5+
CHAT,
66
}

0 commit comments

Comments
 (0)