aboutsummaryrefslogtreecommitdiff
path: root/vim/compiler/pylint.vim
blob: 589f78e3795e66755710e72a4e971ff4e8d962f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
" :compiler support for Python linting with pylint
" <https://pypi.org/project/pyflakes/>
if exists('current_compiler') || &compatible || !has('patch-7.4.191')
  finish
endif
let current_compiler = 'pylint'

CompilerSet makeprg=pylint\ --output-format=parseable\ --score=n\ %:S
CompilerSet errorformat=%f:%l:\ %m