{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "id": "https://json.schemastore.org/vsls.json",
  "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"
      }
    }
  },
  "title": "JSON schema for Visual Studio Live Share config files",
  "type": "object"
}
