Skip to content

Commit 57e1725

Browse files
committed
Preferences update
1 parent 0eb9b56 commit 57e1725

File tree

2 files changed

+35
-33
lines changed

2 files changed

+35
-33
lines changed

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# Python Language Server (PyLS) Implementation
1+
# Python Language Server (PyLS) for Nova
2+
3+
A Python Language Server (PyLS) implementation for [Panic's Nova](https://nova.app) editor.
24

35
🚧🚧 Under Development 🚧🚧
46

extension.json

Lines changed: 32 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
{
2-
"identifier": "works.creativecode.JediLanguageServer-Nova",
3-
"name": "Jedi Language Server",
2+
"identifier": "works.creativecode.PyLS-Nova",
3+
"name": "Python Language Server",
44
"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",
78
"categories": ["languages"],
89

910
"main": "main.js",
@@ -30,6 +31,7 @@
3031
},
3132
{
3233
"key": "pyls.configurationSources",
34+
"title": "Configuration Sources",
3335
"type": "enum",
3436
"values": ["pycodestyle", "pyflakes"],
3537
"default": "pycodestyle",
@@ -118,29 +120,10 @@
118120
]
119121
},
120122
{
121-
"title": "Options",
122-
"description": "Code Style Options",
123+
"title": "Linting Options",
123124
"type": "section",
124125
"key": "works.creativecode.pylint.codeStyleCat",
125126
"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-
},
144127
{
145128
"key": "pyls.plugins.pycodestyle.enabled",
146129
"type": "boolean",
@@ -204,6 +187,31 @@
204187
"type": "string",
205188
"default": null,
206189
"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."
207215
},
208216
{
209217
"key": "pyls.plugins.rope_completion.enabled",
@@ -224,14 +232,6 @@
224232
"description": "Builtin and c-extension modules that are allowed to be imported and inspected by rope."
225233
}
226234
]
227-
},
228-
{
229-
"title": "Options",
230-
"description": "Code Style Options",
231-
"type": "section",
232-
"key": "works.creativecode.pylint.codeStyleCat",
233-
"children": [
234-
]
235235
}
236236
]
237237
}

0 commit comments

Comments
 (0)