All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.vacxe.danger.kotlin.shellcheck.model.ShellcheckFinding.kt Maven / Gradle / Ivy

package io.github.vacxe.danger.kotlin.shellcheck.model

data class ShellcheckFinding(
    val file: String,
    val line: Int,
    val endLine: Int,
    val column: Int,
    val endColumn: Int,
    val level: Level,
    val code: Int,
    val message: String,
    val fix: Fix?,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy