io.gitlab.arturbosch.detekt.rules.style.KtFileContent.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of detekt-rules-style Show documentation
Show all versions of detekt-rules-style Show documentation
Static code analysis for Kotlin
The newest version!
package io.gitlab.arturbosch.detekt.rules.style
import org.jetbrains.kotlin.psi.KtFile
internal data class KtFileContent(val file: KtFile, val content: Sequence)
internal fun KtFile.toFileContent() = KtFileContent(this, text.splitToSequence("\n"))
© 2015 - 2025 Weber Informatics LLC | Privacy Policy