-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathextension.json
524 lines (519 loc) · 23.7 KB
/
extension.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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
{
"identifier": "works.creativecode.python-nova",
"name": "Python",
"organization": "CreativeCodeWorks",
"description": "Full featured Python Plugin for Nova— Supports Jedi Autocomplete, PyFlakes, PyLint, YAPF, Rope, McCabe and lots more. Under development.",
"version": "1.1.0",
"license": "MIT",
"categories": [
"languages"
],
"main": "main.js",
"bugs": "https://github.com/mmshivesh/Python-Nova.novaextension/issues",
"repository": "https://github.com/mmshivesh/Python-Nova.novaextension",
"entitlements": {
"process": true,
"filesystem": "readonly"
},
"configWorkspace": [
{
"key":"pyls.plugins.jedi.workspace.environment",
"title": "Workspace Jedi Environment Path",
"type": "path",
"description": "Jedi Environment override for the given workspace"
}
],
"config": [
{
"title": "Basic Options",
"description": "Basic PyLS configutation options",
"type": "section",
"key": "works.creativecode.pyls.optionsSec",
"children": [
{
"key":"pyls.executable",
"title": "Executable Path",
"type": "path",
"placeholder": "/usr/local/bin/pyls",
"description": "Language server executable (Requires Extension Reload)"
},
{
"key": "pyls.enableLogging",
"type": "boolean",
"title": "Enable Logging",
"description": "Enable logging for PyLS (Requires Extension Reload)"
},
{
"key": "pyls.logPath",
"type": "path",
"title": "Path to PyLS log File",
"placeholder": "/tmp/pyls.log",
"description": "PyLS log path (Requires Extension Reload)"
},
{
"key": "pyls.configurationSources",
"title": "Configuration Sources",
"type": "enum",
"values": ["pycodestyle", "pyflakes"],
"default": "pycodestyle",
"description": "List of configuration sources to use."
}
]
},
{
"title": "Enable Modules",
"description": "Quickly Enable or disable PyLS modules",
"type": "section",
"key": "works.creativecode.pyls.modulesSec",
"children": [
{
"key": "pyls.plugins.jedi.enabled",
"type": "boolean",
"title": "Enable Jedi",
"default": true,
"description": "Enable or disable the Base Jedi plugin."
},
{
"key": "pyls.plugins.jedi_completion.enabled",
"type": "boolean",
"title": "Enable Jedi Completion",
"default": true,
"description": "Enable or disable the Jedi Completion plugin."
},
{
"key": "pyls.plugins.jedi_definition.enabled",
"type": "boolean",
"title": "Enable Jedi Definition",
"default": true,
"description": "Enable or disable the Jedi Definition plugin."
},
{
"key": "pyls.plugins.jedi_hover.enabled",
"type": "boolean",
"title": "Enable Jedi Hover",
"default": true,
"description": "Enable or disable the Jedi Hover plugin."
},
{
"key": "pyls.plugins.jedi_references.enabled",
"type": "boolean",
"title": "Enable Jedi References",
"default": true,
"description": "Enable or disable the Jedi References plugin."
},
{
"key": "pyls.plugins.jedi_signature_help.enabled",
"type": "boolean",
"title": "Enable Jedi Signature Help",
"default": true,
"description": "Enable or disable the Jedi function signature help plugin."
},
{
"key": "pyls.plugins.jedi_symbols.enabled",
"type": "boolean",
"title": "Enable Jedi Symbols",
"default": true,
"description": "Enable or disable the Jedi symbols plugin."
},
{
"key": "pyls.plugins.preload.enabled",
"type": "boolean",
"title": "Enable Preload",
"default": true,
"description": "Enable or disable preload module plugin."
},
{
"key": "pyls.plugins.rope_completion.enabled",
"type": "boolean",
"title": "Enable Rope Completion",
"default": false,
"description": "Enable or disable the Rope based completion plugin."
},
{
"key": "pyls.plugins.yapf.enabled",
"type": "boolean",
"title": "Enable YAPF",
"default": true,
"description": "Enable or disable the YAPF plugin."
},
{
"key": "pyls.plugins.mccabe.enabled",
"type": "boolean",
"title": "Enable McCabe",
"default": true,
"description": "Enable or disable the McCabe plugin."
},
{
"key": "pyls.plugins.pydocstyle.enabled",
"type": "boolean",
"title": "Enable PyDocStyle",
"default": false,
"description": "Enable or disable the PyDocStyle plugin."
},
{
"key": "pyls.plugins.pycodestyle.enabled",
"type": "boolean",
"title": "Enable PyCodeStyle",
"default": true,
"description": "Enable or disable the PyCodeStyle plugin."
},
{
"key": "pyls.plugins.pyflakes.enabled",
"type": "boolean",
"title": "Enable PyFlakes",
"default": true,
"description": "Enable or disable the PyFlakes plugin."
},
{
"key": "pyls.plugins.pylint.enabled",
"type": "boolean",
"title": "Enable PyLint",
"default": false,
"description": "Enable or disable the PyLint plugin."
}
]
},
{
"title": "Module Options",
"description": "Options for PyLS modules.",
"type": "section",
"key": "works.creativecode.pylint.codeStyleCat",
"children": [
{
"title": "Jedi",
"type": "section",
"key": "works.creativecode.pyls.jediOptionsSec",
"children": [
{
"key": "pyls.plugins.jedi.extra_paths",
"title": "Extra Paths",
"type": "string",
"default": null,
"placeholder":"<path-1>, <path-2>, ...",
"description": "Define extra paths for jedi.Script. (Comma separated paths)"
},
{
"key": "pyls.plugins.jedi.env_vars",
"title": "Environment Variables",
"type": "text",
"default": null,
"value": "{ \"env\": \"value\"}",
"description": "Define environment variables for jedi.Script and Jedi.names."
},
{
"key": "pyls.plugins.jedi.environment",
"title": "Environment",
"type": "string",
"default": null,
"description": "Define environment for jedi.Script and Jedi.names."
}
]
},
{
"title": "Jedi Completion",
"type": "section",
"key": "works.creativecode.pyls.jediCompletionSec",
"children": [
{
"key": "pyls.plugins.jedi_completion.include_params",
"type": "boolean",
"title": "Include Function and Class Parameters",
"default": false,
"description": "Auto-completes methods and classes with tabstops for each parameter."
},
{
"key": "pyls.plugins.jedi_completion.include_class_objects",
"type": "boolean",
"title": "Separate Class Objects in Completion",
"default": true,
"description": "Adds class objects as a separate completion item."
},
{
"key": "pyls.plugins.jedi_completion.fuzzy",
"type": "boolean",
"title": "Enable Fuzzy auto-completion",
"default": true,
"description": "Enable fuzzy searching when requesting autocomplete."
}
]
},
{
"title": "Jedi Definition",
"type": "section",
"key": "works.creativecode.pyls.jediDefinitionSec",
"children": [
{
"key": "pyls.plugins.jedi_definition.follow_imports",
"type": "boolean",
"default": true,
"title": "Follow Imports",
"description": "The goto call will follow imports."
},
{
"key": "pyls.plugins.jedi_definition.follow_builtin_imports",
"type": "boolean",
"default": true,
"title": "Follow Built-in Imports",
"description": "If follow_imports is True will decide if it follow builtin imports."
}
]
},
{
"title": "Jedi Symbols",
"type": "section",
"key": "works.creativecode.pyls.jediSymbolsSec",
"children": [
{
"key": "pyls.plugins.jedi_symbols.all_scopes",
"type": "boolean",
"title": "Enable All Scopes",
"default": true,
"description": "If True lists the names of all scopes instead of only the module namespace."
}
]
},
{
"title": "McCabe",
"type": "section",
"key": "works.creativecode.pyls.McCabeSec",
"children": [
{
"key": "pyls.plugins.mccabe.threshold",
"title": "Threshold",
"type": "number",
"default": 15,
"description": "The minimum threshold that triggers warnings about cyclomatic complexity."
}
]
},
{
"title": "Preload",
"type": "section",
"key": "works.creativecode.pyls.PreloadSec",
"children": [
{
"key": "pyls.plugins.preload.modules",
"type": "string",
"title": "Startup Import",
"default": null,
"description": "List of modules to import on startup (Comma separated paths)"
}
]
},
{
"title": "PyCodeStyle",
"type": "section",
"key": "works.creativecode.pyls.PycodestyleSec",
"children": [
{
"key": "pyls.plugins.pycodestyle.exclude",
"type": "string",
"title": "Exclude Files/Directories",
"description": "Exclude files or directories which match these patterns. (Comma separated values)"
},
{
"key": "pyls.plugins.pycodestyle.filename",
"title": "Filenames to include",
"type": "string",
"default": null,
"description": "When parsing directories, only check filenames matching these patterns. (Comma separated values)"
},
{
"key": "pyls.plugins.pycodestyle.select",
"title": "Warnings/Error Codes to Select",
"type": "string",
"default": null,
"description": "Select errors and warnings (Comma separated values)"
},
{
"key": "pyls.plugins.pycodestyle.ignore",
"type": "string",
"title": "Warnings/Error Codes to Ignore",
"default": null,
"description": "Ignore errors and warnings (Comma separated values)"
},
{
"key": "pyls.plugins.pycodestyle.hangClosing",
"type": "boolean",
"title": "Hang closing bracket",
"default": null,
"description": "Hang closing bracket instead of matching indentation of opening bracket's line."
},
{
"key": "pyls.plugins.pycodestyle.disableLineLength",
"type": "boolean",
"title": "Disable Maximum Line Length Check",
"default": false,
"description": "Shortcut to ignore the Maximum Line Length (E501) warning"
},
{
"key": "pyls.plugins.pycodestyle.maxLineLength",
"type": "number",
"title": "Maximum Line Length",
"default": 79,
"description": "Set maximum allowed line length."
}
]
},
{
"title": "PyDocStyle",
"type": "section",
"key": "works.creativecode.pyls.PydocstyleSec",
"children": [
{
"key": "pyls.plugins.pydocstyle.convention",
"type": "enum",
"title": "Convention",
"default": null,
"values": [
"pep257",
"numpy"
],
"description": "Choose the basic list of checked errors by specifying an existing convention."
},
{
"key": "pyls.plugins.pydocstyle.addIgnore",
"type": "string",
"title": "Additionally Ignore Errors/Warnings",
"default": null,
"description": "Ignore errors and warnings in addition to the specified convention. (Comma separated values)"
},
{
"key": "pyls.plugins.pydocstyle.addSelect",
"type": "string",
"title": "Additionally Select Errors/Warnings",
"default": null,
"description": "Select errors and warnings in addition to the specified convention. (Comma separated values)"
},
{
"key": "pyls.plugins.pydocstyle.ignore",
"type": "string",
"title": "Ignore errors and warnings",
"default": null,
"description": "Ignore PyDocStyle errors and warnings (Comma separated values)"
},
{
"key": "pyls.plugins.pydocstyle.select",
"type": "string",
"default": null,
"title": "Select errors and warnings",
"description": "Select PyDocStyle errors and warnings (Comma separated values)"
},
{
"key": "pyls.plugins.pydocstyle.match",
"type": "string",
"title": "Match Files",
"default": "(?!test_).*\\.py",
"description": "Check only files that exactly match the given regular expression; default is to match files that don't start with 'test_' but end with '.py'."
},
{
"key": "pyls.plugins.pydocstyle.matchDir",
"type": "string",
"title": "Match Directories",
"default": "[^\\.].*",
"description": "Search only dirs that exactly match the given regular expression; default is to match dirs which do not begin with a dot."
}
]
},
{
"title": "PyLint",
"type": "section",
"key": "works.creativecode.pylint.pylintSec",
"children": [
{
"key": "pyls.plugins.pylint.args",
"type": "string",
"title": "Arguments",
"default": null,
"description": "Arguments to pass to pylint."
},
{
"key": "pyls.plugins.pylint.executable",
"type": "path",
"title": "Executable Path",
"default": null,
"description": "Executable to run pylint with. Enabling this will run pylint on unsaved files via stdin. Can slow down workflow. Only works with python3."
}
]
},
{
"title": "Rope",
"type": "section",
"key": "works.creativecode.pylint.ropeCat",
"children": [
{
"key": "pyls.rope.ropeFolder",
"title": "Rope Folder",
"type": "path",
"default": null,
"description": "The name of the folder in which rope stores project configurations and data. Pass `null` for not using such a folder at all."
},
{
"key": "pyls.rope.extensionModules",
"type": "string",
"title": "Extension Modules",
"default": null,
"description": "Builtin and c-extension modules that are allowed to be imported and inspected by rope."
}
]
}
]
},
{
"title": "Plugin Options",
"description": "Options for PyLS plugins.",
"type": "section",
"key": "works.creativecode.pylint.plugin",
"children": [
{
"title": "MyPy",
"type": "section",
"description": "Enable after installing using → pip3 install pyls-mypy",
"key": "works.creativecode.pyls.mypyPluginSec",
"children": [
{
"key": "pyls.plugins.pyls_mypy.enabled",
"type": "boolean",
"title": "Enable MyPy",
"default": false,
"description": "Enable or disable the MyPy PyLS plugin."
},
{
"key": "pyls.plugins.pyls_mypy.live_mode",
"type": "boolean",
"title": "Enable Live Mode",
"default": false,
"description": "Enable or disable Live Mode"
}
]
},
{
"title": "iSort",
"type": "section",
"description": "Enable after installing using → pip3 install pyls-isort",
"key": "works.creativecode.pyls.isortPluginSec",
"children": [
{
"key": "pyls.plugins.pyls_isort.enabled",
"type": "boolean",
"title": "Enable iSort",
"default": false,
"description": "Enable or disable the iSort PyLS plugin."
}]},
{
"title": "Black",
"type": "section",
"description": "Enable after installing using → pip3 install pyls-black",
"key": "works.creativecode.mypy.mypyPluginSec",
"children": [
{
"key": "pyls.plugins.pyls_black.enabled",
"type": "boolean",
"title": "Enable Black",
"default": false,
"description": "Enable or disable the Black PyLS plugin."
}]}
]
}
]
}