io.gitlab.arturbosch.detekt.api.Notification.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of detekt-api Show documentation
Show all versions of detekt-api Show documentation
Static code analysis for Kotlin
The newest version!
package io.gitlab.arturbosch.detekt.api
/**
* Any kind of notification which should be printed to the console.
* For example when using the formatting rule set, any change to
* your kotlin file is a notification.
*/
interface Notification {
val message: String
val level: Level
val isError: Boolean
get() = level == Level.Error
/**
* Level of severity of the notification
*/
enum class Level {
Info,
Warning,
Error
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy