{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://catalog.lintel.tools/schemas/schemastore/vsls-json/latest.json",
  "title": "JSON schema for Visual Studio Live Share config files",
  "x-lintel": {
    "source": "https://www.schemastore.org/vsls.json",
    "sourceSha256": "06edf621bae1da4e6960b42fc91e7fd9c815d60a3054e48625d515a340875891",
    "fileMatch": [
      ".vsls.json"
    ],
    "parsers": [
      "json"
    ]
  },
  "type": "object",
  "properties": {
    "excludeFiles": {
      "description": "An array of globs which indicate the files that should be completely unavailable to guests when you share (e.g. secrets).",
      "type": "array",
      "items": {
        "type": "string"
      }
    },
    "gitignore": {
      "description": "Indicates how .gitignore files should be treated with respects to excluding/hiding files from guests.",
      "type": "string",
      "default": "hide",
      "enum": [
        "none",
        "hide",
        "exclude"
      ]
    },
    "hideFiles": {
      "description": "An array of globs which indicate the files that should be hidden from guest's file trees, but still accessible (e.g. when following the host).",
      "type": "array",
      "items": {
        "type": "string"
      }
    }
  },
  "id": "https://json.schemastore.org/vsls.json"
}
