We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16466f7 commit 3d4d1dfCopy full SHA for 3d4d1df
build.gradle.kts
@@ -39,6 +39,14 @@ java {
39
targetCompatibility = JavaVersion.VERSION_1_8
40
}
41
42
+kotlinter {
43
+ // see https://github.com/pinterest/ktlint/blob/master/docs/rules/standard.md
44
+ this.disabledRules = arrayOf(
45
+ "package-name", // This project allows for the inclusion of _ to represent the package name in the snake case.
46
+ "filename" // For clarity in future extensions, this rule is disabled.
47
+ )
48
+}
49
+
50
tasks {
51
test {
52
useJUnitPlatform()
0 commit comments