Skip to content

Commit

Permalink
scalafmt
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreiDreyer committed Apr 23, 2024
1 parent 6ba4e64 commit 52dd0c4
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/main/scala/io/joern/typestubs/Main.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,11 @@ object OutputFormat extends Enumeration {
val json, mpk, zip = Value
}

final case class Config(format: OutputFormat.Value = OutputFormat.zip, languageFrontend: String = Frontend.ALL, outputDirectory: String = "./builtin_types") {
final case class Config(
format: OutputFormat.Value = OutputFormat.zip,
languageFrontend: String = Frontend.ALL,
outputDirectory: String = "./builtin_types"
) {

def withFormat(value: OutputFormat.Value): Config = {
copy(format = value)
Expand Down

0 comments on commit 52dd0c4

Please sign in to comment.