-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
155 lines (155 loc) · 4.73 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"name": "coc-yaml",
"version": "1.9.0",
"description": "yaml extension for coc.nvim",
"main": "lib/index.js",
"publisher": "chemzqm",
"keywords": [
"coc.nvim",
"yaml"
],
"engines": {
"coc": "^0.0.80"
},
"scripts": {
"prepare": "node esbuild.js"
},
"activationEvents": [
"onLanguage:yaml"
],
"yamlValidation": [],
"contributes": {
"configuration": {
"title": "YAML",
"type": "object",
"properties": {
"yaml.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable coc-yaml (requires restart)."
},
"yaml.execArgv": {
"type": "array",
"default": [],
"description": "The execArgv option for node running yaml language server."
},
"yaml.trace.server": {
"type": "string",
"enum": [
"off",
"messages",
"verbose"
],
"default": "off",
"description": "Traces the communication between VSCode and the languageServerExample service."
},
"yaml.schemas": {
"type": "object",
"default": {},
"description": "Associate schemas to Yaml files in the current workspace"
},
"yaml.statusText": {
"type": "string",
"default": "Yaml",
"description": "Text shown in status line when coc-yaml is activated for current buffer."
},
"yaml.format.enable": {
"type": "boolean",
"default": false,
"description": "Enable/disable default YAML formatter (requires restart)"
},
"yaml.format.singleQuote": {
"type": "boolean",
"default": false,
"description": "Use single quotes instead of double quotes"
},
"yaml.format.bracketSpacing": {
"type": "boolean",
"default": true,
"description": "Print spaces between brackets in objects"
},
"yaml.format.proseWrap": {
"type": "string",
"default": "preserve",
"enum": [
"preserve",
"never",
"always"
],
"description": "Always: wrap prose if it exeeds the print width, Never: never wrap the prose, Preserve: wrap prose as-is"
},
"yaml.format.printWidth": {
"type": "integer",
"default": 80,
"description": "Specify the line length that the printer will wrap on"
},
"yaml.validate": {
"type": "boolean",
"default": true,
"description": "Enable/disable validation feature"
},
"yaml.hover": {
"type": "boolean",
"default": true,
"description": "Enable/disable hover feature"
},
"yaml.completion": {
"type": "boolean",
"default": true,
"description": "Enable/disable completion feature"
},
"yaml.customTags": {
"type": "array",
"default": [],
"description": "Custom tags for the parser to use"
},
"yaml.schemaStore.enable": {
"type": "boolean",
"default": true,
"description": "Automatically pull available YAML schemas from JSON Schema Store"
},
"yaml.schemaStore.url": {
"type": "string",
"default": "https://www.schemastore.org/api/json/catalog.json",
"description": "URL of schema store catalog to use"
},
"yaml.disableAdditionalProperties": {
"type": "boolean",
"default": false,
"description": "Globally set additionalProperties to false for all objects. So if its true, no extra properties are allowed inside yaml."
},
"yaml.disableDefaultProperties": {
"type": "boolean",
"default": false,
"description": "Disable adding not required properties with default values into completion text."
},
"yaml.maxItemsComputed": {
"type": "integer",
"default": 5000,
"description": "The maximum number of outline symbols and folding regions computed (limited for performance reasons)."
}
}
},
"commands": [
{
"command": "yaml.selectSchema",
"title": "Choose yaml schema for current file, update configuration in user's coc-settings.json"
}
]
},
"author": "chemzqm@gmail.com",
"license": "MIT",
"devDependencies": {
"@chemzqm/tsconfig": "^0.0.3",
"@types/node": "12.12.0",
"coc.nvim": "^0.0.81-next.16",
"esbuild": "^0.8.51",
"fs-extra": "^10.0.0",
"request-light": "^0.5.7",
"ansi-styles": "^6.1.0",
"typescript": "^4.5.5"
},
"dependencies": {
"prettier": "2.0.5"
}
}