fix(deps): update dependency io.gitlab.arturbosch.detekt:detekt-formatting to v1.23.1 (#471)
* fix(deps): update dependency io.gitlab.arturbosch.detekt:detekt-formatting to v1.23.1 --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ryan Brink <rbweb@pm.me>
This commit is contained in:
@ -1,9 +1,9 @@
|
||||
plugins {
|
||||
kotlin("jvm") version "1.9.10" apply false
|
||||
kotlin("plugin.serialization") version "1.9.10" apply false
|
||||
id("io.bkbn.sourdough.library.jvm") version "0.12.0" apply false
|
||||
id("io.bkbn.sourdough.application.jvm") version "0.12.0" apply false
|
||||
id("io.bkbn.sourdough.root") version "0.12.0"
|
||||
id("io.bkbn.sourdough.library.jvm") version "0.12.1" apply false
|
||||
id("io.bkbn.sourdough.application.jvm") version "0.12.1" apply false
|
||||
id("io.bkbn.sourdough.root") version "0.12.1"
|
||||
id("com.github.jakemarsden.git-hooks") version "0.0.2"
|
||||
id("org.jetbrains.kotlinx.kover") version "0.7.3"
|
||||
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
|
||||
|
@ -42,6 +42,7 @@ object Helpers {
|
||||
}
|
||||
}
|
||||
|
||||
@Suppress("CyclomaticComplexMethod")
|
||||
fun MethodInfo.addToSpec(
|
||||
path: Path,
|
||||
spec: OpenApiSpec,
|
||||
|
@ -11,4 +11,4 @@ org.gradle.parallel=true
|
||||
# Dependencies
|
||||
ktorVersion=2.3.4
|
||||
kotestVersion=5.7.2
|
||||
detektVersion=1.22.0
|
||||
detektVersion=1.23.1
|
||||
|
@ -18,6 +18,7 @@ import kotlin.reflect.full.isSubclassOf
|
||||
|
||||
object SchemaGenerator {
|
||||
|
||||
@Suppress("CyclomaticComplexMethod")
|
||||
fun fromTypeToSchema(
|
||||
type: KType,
|
||||
cache: MutableMap<String, JsonSchema>,
|
||||
|
@ -13,6 +13,6 @@ class ApiKeyAuth private constructor(val `in`: String, val name: String) : Secur
|
||||
enum class ApiKeyLocation(val value: String) {
|
||||
HEADER("header"),
|
||||
QUERY("query"),
|
||||
COOKIE("cookie");
|
||||
COOKIE("cookie")
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user