Skip to content

Commit 2712365

Browse files
committed
fix checkstyle
1 parent 69459d5 commit 2712365

File tree

2 files changed

+13
-2
lines changed

2 files changed

+13
-2
lines changed

build.gradle.kts

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,17 @@ checkstyle {
107107
configDirectory.set(File("checkstyle"))
108108
}
109109

110+
tasks.withType<Checkstyle>() {
111+
exclude("**/generated/**")
112+
}
113+
114+
tasks.checkstyleAot {
115+
isEnabled = false
116+
}
117+
tasks.processTestAot {
118+
isEnabled = false
119+
}
120+
110121
graalvmNative {
111122
binaries {
112123
named("main") {

src/main/resources/database/schema.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -112,11 +112,11 @@ CREATE TABLE IF NOT EXISTS user_preferences
112112
ordinal INTEGER NOT NULL,
113113
state VARCHAR NOT NULL DEFAULT '',
114114
PRIMARY KEY (user_id, ordinal)
115-
)
115+
);
116116

117117
//QOTW champion
118118
CREATE TABLE qotw_champion (
119119
guild_id BIGINT NOT NULL,
120120
user_id BIGINT NOT NULL,
121121
PRIMARY KEY(guild_id, user_id)
122-
)
122+
);

0 commit comments

Comments
 (0)