Simplify formatting.

This commit is contained in:
2025-10-02 12:57:00 +02:00
parent 4dce39e96b
commit a123afd052

View File

@@ -67,7 +67,7 @@ pub fn work(in_path:Option<&str>, out_path:Option<&str>) -> Result<(), String>
match ch { match ch {
'[' | '{' => { '[' | '{' => {
tab_num += 1; tab_num += 1;
out_writer.write(format!("{}\n", ch).as_bytes()).unwrap(); out_writer.write(format!("{ch}\n").as_bytes()).unwrap();
for _ in 0..tab_num { for _ in 0..tab_num {
out_writer.write(b" ").unwrap(); out_writer.write(b" ").unwrap();
} }
@@ -79,11 +79,11 @@ pub fn work(in_path:Option<&str>, out_path:Option<&str>) -> Result<(), String>
for _ in 0..tab_num { for _ in 0..tab_num {
out_writer.write(b" ").unwrap(); out_writer.write(b" ").unwrap();
} }
out_writer.write(format!("{}", ch).as_bytes()).unwrap(); out_writer.write(format!("{ch}").as_bytes()).unwrap();
last_ch = ch; last_ch = ch;
}, },
',' => { ',' => {
out_writer.write(format!("{}", ch).as_bytes()).unwrap(); out_writer.write(format!("{ch}").as_bytes()).unwrap();
if last_ch == '}' || last_ch == ']' { if last_ch == '}' || last_ch == ']' {
out_writer.write(b"\n").unwrap(); out_writer.write(b"\n").unwrap();
for _ in 0..tab_num { for _ in 0..tab_num {
@@ -96,7 +96,7 @@ pub fn work(in_path:Option<&str>, out_path:Option<&str>) -> Result<(), String>
}, },
_ => { _ => {
if ch != ' ' || last_ch != ' ' { if ch != ' ' || last_ch != ' ' {
out_writer.write(format!("{}", ch).as_bytes()).unwrap(); out_writer.write(format!("{ch}").as_bytes()).unwrap();
last_ch = ch; last_ch = ch;
} }
}, },