Skip to content

Commit 7eccbe9

Browse files
committed
Add busy signal service and remove unused code highlight provider
This adds a progress indicator for the language server via the [busy signal service](https://github.com/facebook-atom/atom-ide-ui/blob/master/docs/busy-signal.md) and removes the unused code highlight provider since `pyls` doesn't support it yet: palantir/python-language-server#227
1 parent 3074d78 commit 7eccbe9

File tree

1 file changed

+14
-18
lines changed

1 file changed

+14
-18
lines changed

package.json

Lines changed: 14 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,7 @@
2727
"dependencies": {
2828
"atom-languageclient": "^0.8.2"
2929
},
30-
"enhancedScopes": [
31-
"source.python"
32-
],
30+
"enhancedScopes": ["source.python"],
3331
"configSchema": {
3432
"pylsPath": {
3533
"title": "Python Language Server Path",
@@ -44,16 +42,11 @@
4442
"properties": {
4543
"configurationSources": {
4644
"type": "array",
47-
"default": [
48-
"pycodestyle"
49-
],
45+
"default": ["pycodestyle"],
5046
"description": "List of configuration sources to use. Requires `pyls` 0.12.1+",
5147
"items": {
5248
"type": "string",
53-
"enum": [
54-
"pycodestyle",
55-
"pyflakes"
56-
]
49+
"enum": ["pycodestyle", "pyflakes"]
5750
}
5851
},
5952
"jedi_completion": {
@@ -131,7 +124,8 @@
131124
"title": "All Scopes",
132125
"type": "boolean",
133126
"default": true,
134-
"description": "If enabled lists the names of all scopes instead of only the module namespace. Requires `pyls` 0.7.0+"
127+
"description":
128+
"If enabled lists the names of all scopes instead of only the module namespace. Requires `pyls` 0.7.0+"
135129
}
136130
}
137131
},
@@ -149,7 +143,8 @@
149143
"title": "Threshold",
150144
"type": "number",
151145
"default": 15,
152-
"description": "The minimum threshold that triggers warnings about cyclomatic complexity."
146+
"description":
147+
"The minimum threshold that triggers warnings about cyclomatic complexity."
153148
}
154149
}
155150
},
@@ -166,7 +161,8 @@
166161
"hangClosing": {
167162
"type": "boolean",
168163
"default": false,
169-
"description": "Hang closing bracket instead of matching indentation of opening bracket's line. Requires `pyls` 0.12.1+"
164+
"description":
165+
"Hang closing bracket instead of matching indentation of opening bracket's line. Requires `pyls` 0.12.1+"
170166
},
171167
"maxLineLength": {
172168
"type": "number",
@@ -226,6 +222,11 @@
226222
}
227223
},
228224
"consumedServices": {
225+
"atom-ide-busy-signal": {
226+
"versions": {
227+
"0.1.0": "consumeBusySignal"
228+
}
229+
},
229230
"linter-indie": {
230231
"versions": {
231232
"2.0.0": "consumeLinterV2"
@@ -253,11 +254,6 @@
253254
"0.1.0": "provideCodeFormat"
254255
}
255256
},
256-
"code-highlight": {
257-
"versions": {
258-
"0.1.0": "provideCodeHighlight"
259-
}
260-
},
261257
"definitions": {
262258
"versions": {
263259
"0.1.0": "provideDefinitions"

0 commit comments

Comments
 (0)