{
  "$schema": "http://json-schema.org/schema",
  "$id": "CdkApplication",
  "title": "",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "",
      "$default": {
        "$source": "argv",
        "index": 0
      },
      "x-prompt": "Enter cdk app name"
    },
    "tags": {
      "type": "string",
      "description": "Add tags to the application (used for linting).",
      "alias": "t"
    },
    "directory": {
      "type": "string",
      "description": "A directory where the project is placed",
      "alias": "c"
    },
    "skipFormat": {
      "description": "Skip formatting files",
      "type": "boolean",
      "default": false
    },
    "linter": {
      "description": "The tool to use for running lint checks.",
      "type": "string",
      "enum": ["eslint"],
      "default": "eslint"
    },
    "unitTestRunner": {
      "type": "string",
      "enum": ["jest", "none"],
      "description": "Test runner to use for unit tests.",
      "default": "jest",
      "alias": "u"
    },
    "setAsRoutinelessInfraApp": {
      "type": "boolean",
      "description": "Set as routineless infra app at routineless config",
      "default": false,
      "x-prompt": "Do you want to set this app as routineless infra app?",
      "alias": "i"
    }
  },
  "required": ["name"]
}
