io.gitlab.arturbosch.detekt.test.Resources.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of detekt-test Show documentation
Show all versions of detekt-test Show documentation
Static code analysis for Kotlin
package io.gitlab.arturbosch.detekt.test
import io.github.detekt.test.utils.resource
import io.gitlab.arturbosch.detekt.api.Config
import io.gitlab.arturbosch.detekt.core.config.YamlConfig
import java.io.StringReader
fun yamlConfig(name: String) = YamlConfig.loadResource(resource(name).toURL())
fun yamlConfigFromContent(content: String): Config =
YamlConfig.load(StringReader(content.trimIndent()))
© 2015 - 2025 Weber Informatics LLC | Privacy Policy