--- source: crates/rome_formatter_test/src/snapshot_builder.rs info: json/number.json --- # Input ```json [ { "integer": 1234567890, "real": -9876.543210, "e": 0.123456789e-12, "E": 1.234567890E+34, "": 23456789012E66, "zero": 0, "one": 1, " s p a c e d ": [ 1, 2, 3, 4, 5, 6, 7 ] }, 0.5, 98.6, 99.44, 1066, 1e1, 0.1e1, 1e-1, 1, 2, 2, 2.00000 ] ``` ============================= # Outputs ## Output 1 ----- Indent style: Tab Line width: 80 ----- ```json [ { "integer": 1234567890, "real": -9876.54321, "e": 0.123456789e-12, "E": 1.23456789e34, "": 23456789012e66, "zero": 0, "one": 1, " s p a c e d ": [ 1, 2, 3, 4, 5, 6, 7 ] }, 0.5, 98.6, 99.44, 1066, 1e1, 0.1e1, 1e-1, 1, 2, 2, 2.0 ] ```