-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
389 lines (389 loc) · 12.8 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
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
{
"name": "coc-jedi",
"version": "0.36.1",
"jlsName": "jedi-language-server",
"jlsVersion": "0.41.1",
"jlsVenv": ".venv",
"description": "coc.nvim wrapper for the jedi-language-server for Python",
"author": "Sam Roeca <[email protected]>",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/pappasam/coc-jedi.git"
},
"keywords": [
"coc.nvim",
"python",
"jedi",
"vim",
"neovim"
],
"engines": {
"coc": "^0.0.70",
"node": ">=8.10.0"
},
"scripts": {
"clean": "rimraf lib",
"watch": "webpack --watch",
"build": "webpack",
"prepare": "npm-run-all clean build"
},
"devDependencies": {
"@types/node": "^13.13.1",
"@types/rimraf": "^3.0.0",
"coc.nvim": "^0.0.80",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.6",
"typescript": "^4.4.3",
"webpack": "^5.56.0",
"webpack-cli": "^4.8.0"
},
"activationEvents": [
"onLanguage:python"
],
"contributes": {
"configuration": {
"type": "object",
"title": "coc-jedi configuration",
"properties": {
"jedi.enable": {
"type": "boolean",
"default": true,
"description": "Enable/disable jedi-language-server."
},
"jedi.startupMessage": {
"type": "boolean",
"default": false,
"description": "Enable/disable jedi-language-server's message on startup"
},
"jedi.markupKindPreferred": {
"type": "string | null",
"enum": [
"markdown",
"plaintext"
],
"default": null,
"description": "The preferred MarkupKind for jedi-language-server messages. If omitted, defaults to client preferences"
},
"jedi.trace.server": {
"type": "string",
"default": "off",
"enum": [
"off",
"messages",
"verbose"
],
"description": "Trace level of jedi-language-server"
},
"jedi.jediSettings.autoImportModules": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Modules that will not be analyzed but imported. Improves autocompletion but loses goto definition"
},
"jedi.jediSettings.caseInsensitiveCompletion": {
"type": "boolean",
"default": true,
"description": "Completions are by default case insensitive."
},
"jedi.jediSettings.debug": {
"type": "boolean ",
"default": false,
"description": "Enable jedi.set_debug_function, which prints Jedi debugging messages to stdout."
},
"jedi.executable.command": {
"type": "string | null",
"default": null,
"description": "The jedi-language-server executable. If omitted, coc-managed default is used"
},
"jedi.executable.args": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Args passed to jedi-language-server executable. Ignored if command is null"
},
"jedi.codeAction.nameExtractFunction": {
"type": "string",
"default": "jls_extract_def",
"description": "Function name generated by the 'extract_function' codeAction"
},
"jedi.codeAction.nameExtractVariable": {
"type": "string",
"default": "jls_extract_var",
"description": "Variable name generated by the 'extract_variable' codeAction"
},
"jedi.completion.disableSnippets": {
"type": "boolean",
"default": false,
"description": "Enable (or disable) diagnostics provided by Jedi"
},
"jedi.completion.resolveEagerly": {
"type": "boolean",
"default": false,
"description": "Return all completion results in initial completion request"
},
"jedi.completion.ignorePatterns": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "A list of regular expressions. If any regular expression matches a completion, that completion is not returned to the client."
},
"jedi.diagnostics.enable": {
"type": "boolean",
"default": true,
"description": "Enable (or disable) diagnostics provided by Jedi"
},
"jedi.diagnostics.didOpen": {
"type": "boolean",
"default": true,
"description": "Run diagnostics on document open"
},
"jedi.diagnostics.didChange": {
"type": "boolean",
"default": true,
"description": "Run diagnostics on in-memory document change"
},
"jedi.diagnostics.didSave": {
"type": "boolean",
"default": true,
"description": "Run diagnostics on document save (to disk)"
},
"jedi.hover.enable": {
"type": "boolean",
"default": true,
"description": "Enable (or disable) all hover text."
},
"jedi.hover.disable.class.all": {
"type": "boolean",
"default": false,
"description": "Disable all hover text of type specified."
},
"jedi.hover.disable.class.names": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by name in list of type specified."
},
"jedi.hover.disable.class.fullNames": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by the fully qualified name in list of type specified."
},
"jedi.hover.disable.function.all": {
"type": "boolean",
"default": false,
"description": "Disable all hover text of type specified."
},
"jedi.hover.disable.function.names": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by name in list of type specified."
},
"jedi.hover.disable.function.fullNames": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by the fully qualified name in list of type specified."
},
"jedi.hover.disable.instance.all": {
"type": "boolean",
"default": false,
"description": "Disable all hover text of type specified."
},
"jedi.hover.disable.instance.names": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by name in list of type specified."
},
"jedi.hover.disable.instance.fullNames": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by the fully qualified name in list of type specified."
},
"jedi.hover.disable.keyword.all": {
"type": "boolean",
"default": false,
"description": "Disable all hover text of type specified."
},
"jedi.hover.disable.keyword.names": {
"type": "array",
"default": [],
"items": {
"type": "string"
},
"description": "Disable hover text identified by name in list of type specified."
},
"jedi.hover.disable.keyword.fullNames": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by the fully qualified name in list of type specified."
},
"jedi.hover.disable.module.all": {
"type": "boolean",
"default": false,
"description": "Disable all hover text of type specified."
},
"jedi.hover.disable.module.names": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by name in list of type specified."
},
"jedi.hover.disable.module.fullNames": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by the fully qualified name in list of type specified."
},
"jedi.hover.disable.param.all": {
"type": "boolean",
"default": false,
"description": "Disable all hover text of type specified."
},
"jedi.hover.disable.param.names": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by name in list of type specified."
},
"jedi.hover.disable.param.fullNames": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by the fully qualified name in list of type specified."
},
"jedi.hover.disable.path.all": {
"type": "boolean",
"default": false,
"description": "Disable all hover text of type specified."
},
"jedi.hover.disable.path.names": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by name in list of type specified."
},
"jedi.hover.disable.path.fullNames": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by the fully qualified name in list of type specified."
},
"jedi.hover.disable.property.all": {
"type": "boolean",
"default": false,
"description": "Disable all hover text of type specified."
},
"jedi.hover.disable.property.names": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by name in list of type specified."
},
"jedi.hover.disable.property.fullNames": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by the fully qualified name in list of type specified."
},
"jedi.hover.disable.statement.all": {
"type": "boolean",
"default": false,
"description": "Disable all hover text of type specified."
},
"jedi.hover.disable.statement.names": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by name in list of type specified."
},
"jedi.hover.disable.statement.fullNames": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Disable hover text identified by the fully qualified name in list of type specified."
},
"jedi.workspace.extraPaths": {
"type": "array",
"items": {
"type": "string"
},
"default": [],
"description": "Add additional paths for Jedi's analysis. Useful with vendor directories, packages in a non-standard location, etc."
},
"jedi.workspace.environmentPath": {
"type": "string | null",
"default": null,
"description": "The Python executable path, typically the path of a virtual environment. If omitted, defaults to the active Python environment."
},
"jedi.workspace.symbols.maxSymbols": {
"type": "number",
"default": 20,
"description": "Maximum number of symbols returned by a call to `workspace/symbols`"
},
"jedi.workspace.symbols.ignoreFolders": {
"type": "array",
"items": {
"type": "string"
},
"default": [
".nox",
".tox",
".venv",
"__pycache__",
"venv"
],
"description": "Performance optimization that sets names of folders that are ignored for the workspace symbols action."
}
}
}
},
"dependencies": {}
}