|
1 | 1 | {
|
2 |
| - "identifier": "works.creativecode.JediLanguageServer-Nova", |
3 |
| - "name": "Jedi Language Server", |
| 2 | + "identifier": "works.creativecode.PyLS-Nova", |
| 3 | + "name": "Python Language Server", |
4 | 4 | "organization": "CreativeCodeWorks",
|
5 |
| - "description": "Jedi Language Server implementation for Nova", |
6 |
| - "version": "1.0", |
| 5 | + "description": "Python Language Server implementation for Nova", |
| 6 | + "version": "0.0.1", |
| 7 | + "license": "MIT", |
7 | 8 | "categories": ["languages"],
|
8 | 9 |
|
9 | 10 | "main": "main.js",
|
|
30 | 31 | },
|
31 | 32 | {
|
32 | 33 | "key": "pyls.configurationSources",
|
| 34 | + "title": "Configuration Sources", |
33 | 35 | "type": "enum",
|
34 | 36 | "values": ["pycodestyle", "pyflakes"],
|
35 | 37 | "default": "pycodestyle",
|
|
118 | 120 | ]
|
119 | 121 | },
|
120 | 122 | {
|
121 |
| - "title": "Options", |
122 |
| - "description": "Code Style Options", |
| 123 | + "title": "Linting Options", |
123 | 124 | "type": "section",
|
124 | 125 | "key": "works.creativecode.pylint.codeStyleCat",
|
125 | 126 | "children": [
|
126 |
| - { |
127 |
| - "key": "pyls.plugins.mccabe.enabled", |
128 |
| - "type": "boolean", |
129 |
| - "default": true, |
130 |
| - "description": "Enable or disable the plugin." |
131 |
| - }, |
132 |
| - { |
133 |
| - "key": "pyls.plugins.mccabe.threshold", |
134 |
| - "type": "number", |
135 |
| - "default": 15, |
136 |
| - "description": "The minimum threshold that triggers warnings about cyclomatic complexity." |
137 |
| - }, |
138 |
| - { |
139 |
| - "key": "pyls.plugins.preload.enabled", |
140 |
| - "type": "boolean", |
141 |
| - "default": true, |
142 |
| - "description": "Enable or disable the plugin." |
143 |
| - }, |
144 | 127 | {
|
145 | 128 | "key": "pyls.plugins.pycodestyle.enabled",
|
146 | 129 | "type": "boolean",
|
|
204 | 187 | "type": "string",
|
205 | 188 | "default": null,
|
206 | 189 | "description": "Executable to run pylint with. Enabling this will run pylint on unsaved files via stdin. Can slow down workflow. Only works with python3."
|
| 190 | + } |
| 191 | + ] |
| 192 | + }, |
| 193 | + { |
| 194 | + "title": "Other Options", |
| 195 | + "type": "section", |
| 196 | + "key": "works.creativecode.pylint.codeStyleCat", |
| 197 | + "children": [ |
| 198 | + { |
| 199 | + "key": "pyls.plugins.mccabe.enabled", |
| 200 | + "type": "boolean", |
| 201 | + "default": true, |
| 202 | + "description": "Enable or disable the plugin." |
| 203 | + }, |
| 204 | + { |
| 205 | + "key": "pyls.plugins.mccabe.threshold", |
| 206 | + "type": "number", |
| 207 | + "default": 15, |
| 208 | + "description": "The minimum threshold that triggers warnings about cyclomatic complexity." |
| 209 | + }, |
| 210 | + { |
| 211 | + "key": "pyls.plugins.preload.enabled", |
| 212 | + "type": "boolean", |
| 213 | + "default": true, |
| 214 | + "description": "Enable or disable the plugin." |
207 | 215 | },
|
208 | 216 | {
|
209 | 217 | "key": "pyls.plugins.rope_completion.enabled",
|
|
224 | 232 | "description": "Builtin and c-extension modules that are allowed to be imported and inspected by rope."
|
225 | 233 | }
|
226 | 234 | ]
|
227 |
| - }, |
228 |
| - { |
229 |
| - "title": "Options", |
230 |
| - "description": "Code Style Options", |
231 |
| - "type": "section", |
232 |
| - "key": "works.creativecode.pylint.codeStyleCat", |
233 |
| - "children": [ |
234 |
| - ] |
235 | 235 | }
|
236 | 236 | ]
|
237 | 237 | }
|
0 commit comments