From cce76ed614fe3fa7da8dde423564e528bb6e591d Mon Sep 17 00:00:00 2001 From: Ricardo Silva Date: Tue, 7 Sep 2021 14:18:30 +0100 Subject: [PATCH] printer default_style should not add semicolons --- core/odin/printer/printer.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/odin/printer/printer.odin b/core/odin/printer/printer.odin index c0c1ef2d5..3dcb8f069 100644 --- a/core/odin/printer/printer.odin +++ b/core/odin/printer/printer.odin @@ -103,7 +103,7 @@ default_style := Config { spaces = 4, newline_limit = 2, convert_do = false, - semicolons = true, + semicolons = false, tabs = true, brace_style = ._1TBS, split_multiple_stmts = true,