Skip to content

Give indentation option for output file #226

Open
@ORESoftware

Description

@ORESoftware

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?

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions