{
  "$schema": "http://json-schema.org/schema",
  "$id": "Project",
  "title": "",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Name of the e2e project to create",
      "$default": {
        "$source": "argv",
        "index": 0
      }
    },
    "frontendProject": {
      "type": "string",
      "description": "The name of the frontend project to test."
    },
    "baseUrl": {
      "type": "string",
      "description": "The base url of the application to be tested (can be used if no frontendProject is defined)."
    },
    "tags": {
      "type": "string",
      "description": "Add tags to the project (used for linting).",
      "alias": "t"
    },
    "directory": {
      "type": "string",
      "description": "A directory where the project is placed.",
      "alias": "dir",
      "x-completion-type": "directory"
    },
    "linter": {
      "description": "The tool to use for running lint checks.",
      "type": "string",
      "enum": ["eslint", "none"],
      "default": "eslint"
    },
    "skipFormat": {
      "description": "Skip formatting files.",
      "type": "boolean",
      "default": false
    }
  },
  "required": []
}
