-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
120 lines (120 loc) · 2.67 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
{
"identifier": "belcar.pyright",
"name": "Pyright",
"organization": "belcar-s",
"description": "A Python extension powered by Microsoft's Pyright Language Server.",
"repository": "https://github.com/belcar-s/nova-pyright",
"main": "main.js",
"version": "1.3.1",
"entitlements": {
"process": true,
"filesystem": "readwrite",
"requests": true
},
"activationEvents": ["onLanguage:python"],
"bugs": "https://github.com/belcar-s/nova-pyright",
"categories": ["languages", "issues", "completions", "commands"],
"commands": {
"editor": [
{
"title": "Organize Imports",
"command": "orderImports",
"filters": {
"syntaxes": ["python"]
}
},
{
"title": "Add Missing Optional To Parameter",
"command": "addMissingOptionalToParam",
"filters": {
"syntaxes": ["python"]
}
},
{
"title": "Rename Symbol",
"command": "renameSymbol",
"filters": {
"syntaxes": ["python"]
}
}
],
"extensions": [
{
"title": "Restart Server",
"command": "restartLanguageServer"
},
{
"title": "Update Server",
"command": "updateLanguageServer"
},
{
"title": "Use Bundled Server",
"command": "useBundledServer"
},
{
"title": "Forcefully Unlock Initialization",
"command": "unlockInit"
}
]
},
"configWorkspace": [
{
"key": "belcar.pyright.validation_enabled",
"title": "Enable Validation",
"type": "boolean",
"default": true,
"description": "Validate files in this project."
}
],
"config": [
{
"key": "belcar.pyright.user_path",
"title": "Server Location",
"type": "path",
"placeholder": "Built-in",
"description": "Select a JavaScript file; the extension will run it with Node.js.",
"allowFolders": false,
"required": false
}
],
"sidebars": [
{
"id": "pyright.status",
"name": "Pyright",
"smallImage": "small_sidebar",
"smallSelectedImage": "small_sidebar-selected",
"largeImage": "large_sidebar",
"sections": [
{
"id": "pyright.status-details",
"name": "Details",
"allowMultiple": false,
"headerCommands": [
{
"title": "Restart",
"tooltip": "Restart the Pyright Language Server.",
"command": "restartLanguageServer"
}
]
},
{
"id": "pyright.update",
"name": "Update",
"allowMultiple": false,
"headerCommands": [
{
"title": "🌐 Download",
"tooltip": "Use the internet to obtain the latest Pyright version.",
"command": "updateLanguageServer"
},
{
"title": "🗑 Reset",
"tooltip": "Use the bundled Pyright version.",
"command": "useBundledServer"
}
]
}
]
}
]
}