File tree Expand file tree Collapse file tree 2 files changed +4
-5
lines changed
Expand file tree Collapse file tree 2 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ The project consists of three main modules:
6767├── automation/ # Build and development automation
6868├── gradle/ # Gradle configuration
6969├── build.gradle.kts # Root build configuration
70- └── README.md # Project documentation
70+ └── .github/ README.md # Project documentation
7171```
7272
7373## Code Style and Standards
Original file line number Diff line number Diff line change 1+ import org.jlleitschuh.gradle.ktlint.KtlintExtension
2+
13plugins {
24 alias(libs.plugins.kotlin.jvm) apply false
35 alias(libs.plugins.intellij.platform) apply false
46 alias(libs.plugins.ktlint) apply false
57 alias(libs.plugins.shadow) apply false
68}
79
8- group = " com.mitteloupe.cag"
9- version = " 1.0-SNAPSHOT"
10-
1110subprojects {
1211 repositories {
1312 mavenCentral()
1413 }
1514
1615 plugins.withId(" org.jlleitschuh.gradle.ktlint" ) {
17- extensions.configure(org.jlleitschuh.gradle.ktlint. KtlintExtension ::class .java) {
16+ extensions.configure(KtlintExtension ::class .java) {
1817 android.set(false )
1918 ignoreFailures.set(false )
2019 filter {
You can’t perform that action at this time.
0 commit comments