From 21c6f5ca619858ff2c9739c9579c31a38384b20d Mon Sep 17 00:00:00 2001 From: Yasuhiro Matsumoto Date: Sun, 16 Feb 2020 00:44:39 +0900 Subject: Update README.md --- schema.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/schema.json b/schema.json index 62aeaca..ab23b42 100644 --- a/schema.json +++ b/schema.json @@ -10,8 +10,8 @@ "properties": { "command": { "description": "define name of language server", - "type": "string", - "pattern": "^[a-zA-Z0-9_-]+$" + "pattern": "^[a-zA-Z0-9_-]+$", + "type": "string" }, "config": { "default": {}, @@ -19,9 +19,9 @@ "type": "object" }, "disabled": { + "default": true, "description": "disable this server", - "type": "boolean", - "default": true + "type": "boolean" }, "requires": { "default": [], @@ -33,8 +33,8 @@ "type": "array" }, "vim-plugin": { - "default": {}, "additionalProperties": false, + "default": {}, "description": "define suggestion for vim-plugin", "properties": { "extensions": { -- cgit v1.2.3-54-g00ecf