Skip to content

Commit 0424917

Browse files
committed
ignore W504, should have done earlier
PyCQA/pycodestyle#197
1 parent a97b3d2 commit 0424917

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vimrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,11 +232,12 @@
232232
let g:syntastic_mode_map = {
233233
\ 'mode': 'active',
234234
\ 'passive_filetypes': ['html','java'] }
235-
let g:syntastic_python_flake8_args = "--ignore=E265,E701,E501,E261,D105,D100,D103,D400,D102,D302,D205,D101"
235+
let g:syntastic_python_flake8_args = "--ignore=E265,E701,E501,E261,D105,D100,D103,D400,D102,D302,D205,D101,W503"
236236

237237
" C0103:Invalid name; C0111:no doc string; W0141:map/filter
238238
" W0232:No init in class; R0201:could be func; W0142:*/** magic
239239
" R0903:too few method; R0904: too many method
240+
" W503:line break before binary operator
240241
" C0111,W0141: no such attr
241242
"let g:syntastic_python_pylint_args = '-d R0904,R0903,W0142,W0232,R0201,C0103'
242243
"let g:syntastic_javascript_jshint_conf = '~/.jshintrc'

0 commit comments

Comments
 (0)