Skip to content

Commit

Permalink
Editorconfig plugin not comaptible
Browse files Browse the repository at this point in the history
  • Loading branch information
sschr15 committed Dec 10, 2023
1 parent 7e7305d commit 3c3177c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ dependencies {
implementation("com.github.jakemarsden", "git-hooks-gradle-plugin", "0.0.2")
implementation("com.google.devtools.ksp", "com.google.devtools.ksp.gradle.plugin", "1.9.21-1.0.15")
implementation("io.gitlab.arturbosch.detekt", "detekt-gradle-plugin", "1.23.4")
implementation("org.ec4j.editorconfig", "org.ec4j.editorconfig.gradle.plugin", "0.0.3")
// implementation("org.ec4j.editorconfig", "org.ec4j.editorconfig.gradle.plugin", "0.0.3")

implementation("com.expediagroup.graphql", "com.expediagroup.graphql.gradle.plugin", "6.3.5")
implementation("com.github.johnrengelman.shadow", "com.github.johnrengelman.shadow.gradle.plugin", "8.1.1")
Expand Down
24 changes: 12 additions & 12 deletions buildSrc/src/main/kotlin/cozy-module.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
*/

import org.cadixdev.gradle.licenser.LicenseExtension
import org.ec4j.gradle.EditorconfigCheckTask
//import org.ec4j.gradle.EditorconfigCheckTask
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
Expand All @@ -16,7 +16,7 @@ plugins {
id("com.google.devtools.ksp")
id("io.gitlab.arturbosch.detekt")
id("org.cadixdev.licenser")
id("org.ec4j.editorconfig")
// id("org.ec4j.editorconfig")
}

group = "org.quiltmc.community"
Expand Down Expand Up @@ -94,16 +94,16 @@ tasks {
targetCompatibility = JavaVersion.VERSION_17
}

check {
dependsOn("editorconfigCheck")
}

editorconfig {
excludes = mutableListOf(
"build",
".*/**",
)
}
// check {
// dependsOn("editorconfigCheck")
// }
//
// editorconfig {
// excludes = mutableListOf(
// "build",
// ".*/**",
// )
// }
}
}

Expand Down

0 comments on commit 3c3177c

Please sign in to comment.