Open
Description
When I use this:
I get this output:
{
"$schema": "http://json-schema.org/draft-06/schema#",
"properties": {
"packages": {
"additionalProperties": {
},
"type": "object"
},
"searchRoots": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}
but I am looking for different indentation, like this instead:
{
"$schema": "http://json-schema.org/draft-06/schema#",
"properties": {
"packages": {
"additionalProperties": {
},
"type": "object"
},
"searchRoots": {
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}
I think it's 2 spaces instead of 4. Can TJS give us this option?