Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Commit

Permalink
Suppress spellCheckingIspection
Browse files Browse the repository at this point in the history
  • Loading branch information
ursjoss committed Jun 14, 2020
1 parent 6ad121f commit 251d6bd
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/main/kotlin/ch/ayedo/jooqmodelator/core/HealthCheck.kt
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ class FlywayDependentHealthChecker(databaseConfig: DatabaseConfig, healthCheckCo
withMaxDuration(maxDurationMs, MILLISECONDS)
}

@Suppress("RedundantLambdaArrow")
override fun waitForDatabase() {

net.jodah.failsafe.Failsafe.with<RetryPolicy>(retryPolicy).run { _ ->
Expand Down
1 change: 1 addition & 0 deletions src/main/kotlin/ch/ayedo/jooqmodelator/core/Migration.kt
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ import org.flywaydb.core.internal.jdbc.JdbcUtils.openConnection
import java.io.File
import java.nio.file.Path

@Suppress("SpellCheckingInspection")
interface Migrator {

/* deletes all objects in the database */
Expand Down
1 change: 1 addition & 0 deletions src/main/kotlin/ch/ayedo/jooqmodelator/core/Modelator.kt
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import ch.ayedo.jooqmodelator.core.configuration.DatabaseConfig
import com.spotify.docker.client.DefaultDockerClient
import org.slf4j.LoggerFactory

@Suppress("SpellCheckingInspection")
class Modelator(configuration: Configuration) {

private val log = LoggerFactory.getLogger(Modelator::class.java)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ enum class MigrationEngine {
LIQUIBASE
}

@Suppress("SpellCheckingInspection")
data class DockerConfig(val tag: String,
val labelKey: String = "ch.ayedo.jooqmodelator",
val env: List<String>,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package ch.ayedo.jooqmodelator.gradle


@Suppress("SpellCheckingInspection")
open class JooqModelatorExtension {

var jooqVersion: String? = null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import org.gradle.api.Project
import org.gradle.api.artifacts.Configuration
import java.nio.file.Paths


@Suppress("SpellCheckingInspection")
open class JooqModelatorPlugin : Plugin<Project> {

override fun apply(project: Project) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import java.net.URLClassLoader
import java.nio.file.Path


@Suppress("SpellCheckingInspection")
open class JooqModelatorTask : DefaultTask() {

@InputFile
Expand Down

0 comments on commit 251d6bd

Please sign in to comment.