Skip to content

Commit 3074d78

Browse files
committed
Prepare 0.6.0 release
1 parent 7d5c028 commit 3074d78

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

package.json

+17-16
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "ide-python",
33
"main": "./lib/main",
4-
"version": "0.5.0",
4+
"version": "0.6.0",
55
"description": "Python language support for Atom-IDE",
66
"keywords": [
77
"ide",
@@ -27,7 +27,9 @@
2727
"dependencies": {
2828
"atom-languageclient": "^0.8.2"
2929
},
30-
"enhancedScopes": ["source.python"],
30+
"enhancedScopes": [
31+
"source.python"
32+
],
3133
"configSchema": {
3234
"pylsPath": {
3335
"title": "Python Language Server Path",
@@ -42,12 +44,16 @@
4244
"properties": {
4345
"configurationSources": {
4446
"type": "array",
45-
"default": ["pycodestyle"],
46-
"description":
47-
"List of configuration sources to use. Requires `pyls` 0.12.1+",
47+
"default": [
48+
"pycodestyle"
49+
],
50+
"description": "List of configuration sources to use. Requires `pyls` 0.12.1+",
4851
"items": {
4952
"type": "string",
50-
"enum": ["pycodestyle", "pyflakes"]
53+
"enum": [
54+
"pycodestyle",
55+
"pyflakes"
56+
]
5157
}
5258
},
5359
"jedi_completion": {
@@ -125,8 +131,7 @@
125131
"title": "All Scopes",
126132
"type": "boolean",
127133
"default": true,
128-
"description":
129-
"If enabled lists the names of all scopes instead of only the module namespace. Requires `pyls` 0.7.0+"
134+
"description": "If enabled lists the names of all scopes instead of only the module namespace. Requires `pyls` 0.7.0+"
130135
}
131136
}
132137
},
@@ -144,8 +149,7 @@
144149
"title": "Threshold",
145150
"type": "number",
146151
"default": 15,
147-
"description":
148-
"The minimum threshold that triggers warnings about cyclomatic complexity."
152+
"description": "The minimum threshold that triggers warnings about cyclomatic complexity."
149153
}
150154
}
151155
},
@@ -162,14 +166,12 @@
162166
"hangClosing": {
163167
"type": "boolean",
164168
"default": false,
165-
"description":
166-
"Hang closing bracket instead of matching indentation of opening bracket's line. Requires `pyls` 0.12.1+"
169+
"description": "Hang closing bracket instead of matching indentation of opening bracket's line. Requires `pyls` 0.12.1+"
167170
},
168171
"maxLineLength": {
169172
"type": "number",
170173
"default": 79,
171-
"description":
172-
"Set maximum allowed line length. Requires `pyls` 0.12.1+"
174+
"description": "Set maximum allowed line length. Requires `pyls` 0.12.1+"
173175
}
174176
}
175177
},
@@ -204,8 +206,7 @@
204206
"enabled": {
205207
"type": "boolean",
206208
"default": false,
207-
"description":
208-
"Enable or disable the plugin. Requires `pyls` 0.12.1+"
209+
"description": "Enable or disable the plugin. Requires `pyls` 0.12.1+"
209210
}
210211
}
211212
},

0 commit comments

Comments
 (0)