Skip to content

Commit 694bc12

Browse files
authored
Corrected the README path in CONTRIBUTING.md.
1 parent 9d72354 commit 694bc12

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

build.gradle.kts

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
1+
import org.jlleitschuh.gradle.ktlint.KtlintExtension
2+
13
plugins {
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-
1110
subprojects {
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 {

0 commit comments

Comments
 (0)