--- source: crates/biome_formatter_test/src/snapshot_builder.rs info: json/smoke.json --- # Input ```json { "a": 5, "b": [1, 2, 3, 4], "c": null, "d": true, "e": false } ``` ============================= # Outputs ## Output 1 ----- Indent style: Tab Indent width: 2 Line ending: LF Line width: 80 Trailing commas: None ----- ```json { "a": 5, "b": [1, 2, 3, 4], "c": null, "d": true, "e": false } ```