Browse Source

Merge pull request #1134 from rasa-silva/master

printer default_style should not add semicolons
Jeroen van Rijn 4 years ago
parent
commit
1d57a91395
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/odin/printer/printer.odin

+ 1 - 1
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,