Skip to content

Commit e8950bf

Browse files
committed
Prepare 0.9.0 release
1 parent 0d867b2 commit e8950bf

File tree

1 file changed

+41
-29
lines changed

1 file changed

+41
-29
lines changed

package.json

Lines changed: 41 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ide-python",
33
"main": "./lib/main",
4-
"version": "0.8.2",
4+
"version": "0.9.0",
55
"description": "Python language support for Atom-IDE",
66
"keywords": [
77
"ide",
@@ -28,7 +28,9 @@
2828
"dependencies": {
2929
"atom-languageclient": "^0.9.1"
3030
},
31-
"enhancedScopes": ["source.python"],
31+
"enhancedScopes": [
32+
"source.python"
33+
],
3234
"configSchema": {
3335
"pylsPath": {
3436
"title": "Python Language Server Path",
@@ -40,19 +42,27 @@
4042
"pylsConfigurationSources": {
4143
"order": 2,
4244
"type": "array",
43-
"default": ["pycodestyle", "flake8"],
45+
"default": [
46+
"pycodestyle",
47+
"flake8"
48+
],
4449
"description": "List of configuration sources to use. Requires `pyls` 0.12.1+",
4550
"items": {
4651
"type": "string",
47-
"enum": ["pycodestyle", "flake8"]
52+
"enum": [
53+
"pycodestyle",
54+
"flake8"
55+
]
4856
}
4957
},
5058
"ropeFolder": {
5159
"order": 3,
52-
"type": ["string", null],
60+
"type": [
61+
"string",
62+
null
63+
],
5364
"default": ".ropeproject",
54-
"description":
55-
"The name of the folder in which rope stores project configurations and data. If empty, no such a folder is used at all. Requires `pyls` 0.17+"
65+
"description": "The name of the folder in which rope stores project configurations and data. If empty, no such a folder is used at all. Requires `pyls` 0.17+"
5666
},
5767
"pylsPlugins": {
5868
"title": "Python Language Server Plugins",
@@ -133,8 +143,7 @@
133143
"title": "All Scopes",
134144
"type": "boolean",
135145
"default": true,
136-
"description":
137-
"If enabled lists the names of all scopes instead of only the module namespace. Requires `pyls` 0.7+"
146+
"description": "If enabled lists the names of all scopes instead of only the module namespace. Requires `pyls` 0.7+"
138147
}
139148
}
140149
},
@@ -152,8 +161,7 @@
152161
"title": "Threshold",
153162
"type": "number",
154163
"default": 15,
155-
"description":
156-
"The minimum threshold that triggers warnings about cyclomatic complexity."
164+
"description": "The minimum threshold that triggers warnings about cyclomatic complexity."
157165
}
158166
}
159167
},
@@ -182,7 +190,15 @@
182190
"order": 3,
183191
"title": "Ignore",
184192
"type": "array",
185-
"default": ["E121", "E123", "E126", "E226", "E24", "E704", "W503"],
193+
"default": [
194+
"E121",
195+
"E123",
196+
"E126",
197+
"E226",
198+
"E24",
199+
"E704",
200+
"W503"
201+
],
186202
"items": {
187203
"type": "string"
188204
},
@@ -193,8 +209,7 @@
193209
"title": "Hang Closing",
194210
"type": "boolean",
195211
"default": false,
196-
"description":
197-
"Hang closing bracket instead of matching indentation of opening bracket's line. Requires `pyls` 0.12.1+"
212+
"description": "Hang closing bracket instead of matching indentation of opening bracket's line. Requires `pyls` 0.12.1+"
198213
},
199214
"maxLineLength": {
200215
"order": 5,
@@ -221,16 +236,14 @@
221236
"title": "Match",
222237
"type": "string",
223238
"default": "(?!test_).*\\.py",
224-
"description":
225-
"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'. Requires `pyls` 0.17+"
239+
"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'. Requires `pyls` 0.17+"
226240
},
227241
"matchDir": {
228242
"order": 3,
229243
"title": "Match Dir",
230244
"type": "string",
231245
"default": "[^\\.].*",
232-
"description":
233-
"Search only dirs that exactly match the given regular expression; default is to match dirs which do not begin with a dot. Requires `pyls` 0.17+"
246+
"description": "Search only dirs that exactly match the given regular expression; default is to match dirs which do not begin with a dot. Requires `pyls` 0.17+"
234247
},
235248
"select": {
236249
"order": 4,
@@ -256,10 +269,13 @@
256269
"order": 6,
257270
"title": "Convention",
258271
"type": "string",
259-
"enum": ["pep257", "numpy", ""],
272+
"enum": [
273+
"pep257",
274+
"numpy",
275+
""
276+
],
260277
"default": "",
261-
"description":
262-
"Choose the basic list of checked errors by specifying an existing convention. Requires `pyls` 0.17+"
278+
"description": "Choose the basic list of checked errors by specifying an existing convention. Requires `pyls` 0.17+"
263279
},
264280
"addSelect": {
265281
"order": 7,
@@ -269,8 +285,7 @@
269285
"items": {
270286
"type": "string"
271287
},
272-
"description":
273-
"Select errors and warnings in addition to the specified convention. Requires `pyls` 0.17+"
288+
"description": "Select errors and warnings in addition to the specified convention. Requires `pyls` 0.17+"
274289
},
275290
"addIgnore": {
276291
"order": 8,
@@ -280,8 +295,7 @@
280295
"items": {
281296
"type": "string"
282297
},
283-
"description":
284-
"Ignore errors and warnings in addition to the specified convention. Requires `pyls` 0.17+"
298+
"description": "Ignore errors and warnings in addition to the specified convention. Requires `pyls` 0.17+"
285299
}
286300
}
287301
},
@@ -317,8 +331,7 @@
317331
"title": "Enabled",
318332
"type": "boolean",
319333
"default": false,
320-
"description":
321-
"Enable or disable Yapf. If both Yapf and autopep8 are enabled the latter is prefered."
334+
"description": "Enable or disable Yapf. If both Yapf and autopep8 are enabled the latter is prefered."
322335
}
323336
}
324337
},
@@ -330,8 +343,7 @@
330343
"title": "Enabled",
331344
"type": "boolean",
332345
"default": true,
333-
"description":
334-
"Enable or disable autopep8. Formats code according to PyCodeStyle config. Requires `pyls` 0.17+"
346+
"description": "Enable or disable autopep8. Formats code according to PyCodeStyle config. Requires `pyls` 0.17+"
335347
}
336348
}
337349
}

0 commit comments

Comments
 (0)