diff options
Diffstat (limited to 'local-schema.json')
-rw-r--r-- | local-schema.json | 71 |
1 files changed, 37 insertions, 34 deletions
diff --git a/local-schema.json b/local-schema.json index 3d4548f..744f1d7 100644 --- a/local-schema.json +++ b/local-schema.json @@ -1,45 +1,48 @@ { "$schema": "http://json-schema.org/draft-04/schema", "additionalProperties": false, - "properties": { - "blacklist": { - "items": { - "pattern": "^[a-zA-Z0-9_-]+$", - "type": "string" + "items": { + "type": "object", + "properties": { + "blacklist": { + "items": { + "pattern": "^[a-zA-Z0-9_-]+$", + "type": "string" + }, + "type": "array" }, - "type": "array" - }, - "cmd": { - "items": { - "type": "string" + "cmd": { + "items": { + "type": "string" + }, + "type": "array" + }, + "config": { + "type": "object" }, - "type": "array" - }, - "config": { - "type": "object" - }, - "disabled": { - "default": true, - "type": "boolean" - }, - "initialization_options": { - "type": "object" - }, - "root_uri": { - "pattern": "^file://\\S+$", - "type": "string" - }, - "whitelist": { - "items": { - "pattern": "^[a-zA-Z0-9_-]+$", + "disabled": { + "default": true, + "type": "boolean" + }, + "initialization_options": { + "type": "object" + }, + "root_uri": { + "pattern": "^file://\\S+$", "type": "string" }, - "type": "array" - }, - "workspace_config": { - "type": "object" + "whitelist": { + "items": { + "pattern": "^[a-zA-Z0-9_-]+$", + "type": "string" + }, + "type": "array" + }, + "workspace_config": { + "type": "object" + } } }, "title": "vim-lsp-settings-local", - "type": "object" + "type": "array" } |