Would love to have an option to keep short properties (like ones that contain a single object or value) on a single line to improve readability. For example:
"Foo" : { "Bar" : {"Array" : [{"Name" : "Value" }] } }
Should be displayed as above, instead of:
"Foo" : {
"Bar" : {
"Array" : [{
"Name" : "Value"
}
]
}
}
Would love to have an option to keep short properties (like ones that contain a single object or value) on a single line to improve readability. For example:
"Foo" : { "Bar" : {"Array" : [{"Name" : "Value" }] } }Should be displayed as above, instead of: