From f05e57e2fcf2a99e86c836082389c06c0be8e4c3 Mon Sep 17 00:00:00 2001 From: skewb1k Date: Tue, 23 Dec 2025 14:05:52 +0300 Subject: [PATCH] fix(cli): remove extra newline with `--cst` Makes CST output consistent with other formats. --- crates/cli/src/parse.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/crates/cli/src/parse.rs b/crates/cli/src/parse.rs index 71bee902..1a1d9723 100644 --- a/crates/cli/src/parse.rs +++ b/crates/cli/src/parse.rs @@ -515,7 +515,6 @@ pub fn parse_file_at_path( if opts.output == ParseOutput::Cst { render_cst(&source_code, &tree, &mut cursor, opts, &mut stdout)?; - println!(); } if opts.output == ParseOutput::Xml {