Skip to content

Commit 58d70b2

Browse files
committed
Prepare 0.7.0 release
1 parent 7eccbe9 commit 58d70b2

File tree

1 file changed

+14
-10
lines changed

1 file changed

+14
-10
lines changed

package.json

Lines changed: 14 additions & 10 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.6.0",
4+
"version": "0.7.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,11 +44,16 @@
4244
"properties": {
4345
"configurationSources": {
4446
"type": "array",
45-
"default": ["pycodestyle"],
47+
"default": [
48+
"pycodestyle"
49+
],
4650
"description": "List of configuration sources to use. Requires `pyls` 0.12.1+",
4751
"items": {
4852
"type": "string",
49-
"enum": ["pycodestyle", "pyflakes"]
53+
"enum": [
54+
"pycodestyle",
55+
"pyflakes"
56+
]
5057
}
5158
},
5259
"jedi_completion": {
@@ -124,8 +131,7 @@
124131
"title": "All Scopes",
125132
"type": "boolean",
126133
"default": true,
127-
"description":
128-
"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+"
129135
}
130136
}
131137
},
@@ -143,8 +149,7 @@
143149
"title": "Threshold",
144150
"type": "number",
145151
"default": 15,
146-
"description":
147-
"The minimum threshold that triggers warnings about cyclomatic complexity."
152+
"description": "The minimum threshold that triggers warnings about cyclomatic complexity."
148153
}
149154
}
150155
},
@@ -161,8 +166,7 @@
161166
"hangClosing": {
162167
"type": "boolean",
163168
"default": false,
164-
"description":
165-
"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+"
166170
},
167171
"maxLineLength": {
168172
"type": "number",

0 commit comments

Comments
 (0)