serde-rs / json

Strongly typed JSON library for Rust
Apache License 2.0
4.7k stars 536 forks source link

Add option to disable array line breaks in `PrettyFormatter` #1131

Closed DervexDev closed 2 months ago

DervexDev commented 2 months ago

This PR makes array line breaks optional using new constructor PrettyFormatter::with_array_breaks.

Before:

{
  "size": [
    1,
    2,
    3
  ]
}

After:

{
  "size": [1, 2, 3]
}