Skip to content

Commit

Permalink
Replace pep257 checker with pydocstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
rmk135 committed Feb 28, 2016
1 parent a1d8a71 commit 50e8229
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vimrc
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ let g:pymode_doc_key='K'

" lints
let g:pymode_lint=0
let g:pymode_lint_checker='flake8,pep257'
let g:pymode_lint_checker='flake8,pydocstyle'
let g:pymode_lint_write=0 " run lints after file save
let g:pymode_lint_ignore='' " ignore lint errors

Expand Down Expand Up @@ -216,4 +216,4 @@ let g:syntastic_error_symbol='X'
let g:syntastic_style_error_symbol='X'
let g:syntastic_warning_symbol='x'
let g:syntastic_style_warning_symbol='x'
let g:syntastic_python_checkers = ['flake8', 'pep257', 'python']
let g:syntastic_python_checkers = ['flake8', 'pydocstyle', 'python']

0 comments on commit 50e8229

Please sign in to comment.