Skip to content

Commit 97cb04b

Browse files
committed
Support pycodestyle ignore and select option
1 parent 7f041a2 commit 97cb04b

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

package.json

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,32 @@
163163
"default": true,
164164
"description": "Enable or disable PyCodeStyle."
165165
},
166+
"select": {
167+
"type": "array",
168+
"default": [],
169+
"items": {
170+
"type": "string"
171+
},
172+
"description":
173+
"Select errors and warnings. Requires `pyls` 0.14+"
174+
},
175+
"ignore": {
176+
"type": "array",
177+
"default": [
178+
"E121",
179+
"E123",
180+
"E126",
181+
"E226",
182+
"E24",
183+
"E704",
184+
"W503"
185+
],
186+
"items": {
187+
"type": "string"
188+
},
189+
"description":
190+
"Ignore errors and warnings. Requires `pyls` 0.14+"
191+
},
166192
"hangClosing": {
167193
"type": "boolean",
168194
"default": false,

0 commit comments

Comments
 (0)