com.jetbrains.pluginverifier.output.OutputFormat.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of verifier-cli Show documentation
Show all versions of verifier-cli Show documentation
Command-line interface for JetBrains Plugin Verifier with set of high-level tasks for plugin and IDE validation
package com.jetbrains.pluginverifier.output
enum class OutputFormat {
PLAIN,
HTML,
MARKDOWN;
fun code() = this.name.lowercase()
}
val DEFAULT_OUTPUT_FORMATS = listOf(OutputFormat.PLAIN, OutputFormat.HTML)