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

com.jetbrains.pluginverifier.output.OutputFormat.kt Maven / Gradle / Ivy

Go to download

Command-line interface for JetBrains Plugin Verifier with set of high-level tasks for plugin and IDE validation

There is a newer version: 1.379
Show newest version
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)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy