aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYasuhiro Matsumoto <mattn.jp@gmail.com>2020-02-16 21:47:42 +0900
committerYasuhiro Matsumoto <mattn.jp@gmail.com>2020-02-16 21:47:42 +0900
commite8f73bb5dd8cd167690a50aabe486418835f31f4 (patch)
tree13bbc23a4a160c75d9d211a4cb5a8e9926269854
parentbde44e12e6669377b86e3c70f429ebad1c8840ce (diff)
downloadvim-lsp-settings-e8f73bb5dd8cd167690a50aabe486418835f31f4.tar.gz
vim-lsp-settings-e8f73bb5dd8cd167690a50aabe486418835f31f4.tar.bz2
vim-lsp-settings-e8f73bb5dd8cd167690a50aabe486418835f31f4.zip
Update local schema
-rw-r--r--local-schema.json32
1 files 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"
}