Skip to content

Commit

Permalink
Add ktlint candidate
Browse files Browse the repository at this point in the history
  • Loading branch information
eygraber authored and marc0der committed May 7, 2023
1 parent 1e52950 commit e1d5712
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions src/main/scala/io/sdkman/changelogs/KtlintMigrations.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
package io.sdkman.changelogs

import com.github.mongobee.changeset.{ChangeLog, ChangeSet}
import com.mongodb.client.MongoDatabase

@ChangeLog(order = "079")
class KtlintMigrations {
@ChangeSet(order = "001", id = "001_add_ktlint_candidate", author = "paul-dingemans")
def migration001(implicit db: MongoDatabase) =
Candidate(
candidate = "ktlint",
name = "ktlint",
description = "An anti-bikeshedding Kotlin linter with built-in formatter",
websiteUrl = "https://github.com/pinterest/ktlint"
).insert()
}

0 comments on commit e1d5712

Please sign in to comment.