From e8f73bb5dd8cd167690a50aabe486418835f31f4 Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Sun, 16 Feb 2020 21:47:42 +0900 Subject: Update local schema --- local-schema.json | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/local-schema.json b/local-schema.json index aa62b26..3d4548f 100644 --- a/local-schema.json +++ b/local-schema.json @@ -2,36 +2,40 @@ "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, "properties": { + "blacklist": { + "items": { + "pattern": "^[a-zA-Z0-9_-]+$", + "type": "string" + }, + "type": "array" + }, "cmd": { "items": { "type": "string" }, "type": "array" }, + "config": { + "type": "object" + }, + "disabled": { + "default": true, + "type": "boolean" + }, "initialization_options": { "type": "object" }, "root_uri": { - "type": "string", - "pattern": "^file://\\S+$" + "pattern": "^file://\\S+$", + "type": "string" }, "whitelist": { "items": { - "type": "string", - "pattern": "^[a-zA-Z0-9_-]+$" - }, - "type": "array" - }, - "blacklist": { - "items": { - "type": "string", - "pattern": "^[a-zA-Z0-9_-]+$" + "pattern": "^[a-zA-Z0-9_-]+$", + "type": "string" }, "type": "array" }, - "config": { - "type": "object" - }, "workspace_config": { "type": "object" } -- cgit v1.2.3-54-g00ecf