Skip to content

Commit 61be5a3

Browse files
committed
spotless - lots of commas
1 parent 86fd89a commit 61be5a3

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ idea.project.settings {
9090
afterSync(
9191
":cel-generated-pb:jar",
9292
":cel-generated-pb:testJar",
93-
":cel-generated-antlr:shadowJar"
93+
":cel-generated-antlr:shadowJar",
9494
)
9595
}
9696
}

buildSrc/src/main/kotlin/PublishingHelperPlugin.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -231,7 +231,7 @@ class PublishingHelperPlugin : Plugin<Project> {
231231
private fun findDependency(
232232
config: Configuration?,
233233
depGroup: String,
234-
depName: String
234+
depName: String,
235235
): DependencyResult? {
236236
if (config != null) {
237237
val depResult =

buildSrc/src/main/kotlin/Spotless.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ fun Project.nessieConfigureSpotless() {
8080
scalafmt()
8181
licenseHeaderFile(
8282
rootProject.file("codestyle/copyright-header-java.txt"),
83-
"^(package|import) .*$"
83+
"^(package|import) .*$",
8484
)
8585
target("src/**/scala/**")
8686
targetExclude("buildSrc/build/**")

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ develocity {
4545
"GITHUB_RUN_ID",
4646
"GITHUB_RUN_NUMBER",
4747
"GITHUB_SHA",
48-
"GITHUB_WORKFLOW"
48+
"GITHUB_WORKFLOW",
4949
)
5050
.forEach { e ->
5151
val v = System.getenv(e)

0 commit comments

Comments
 (0)