2012-02-20 10:20:48 +00:00
|
|
|
"============================================================================
|
|
|
|
"File: pylint.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
|
|
"Author: Parantapa Bhattacharya <parantapa at gmail dot com>
|
|
|
|
"
|
|
|
|
"============================================================================
|
2013-02-21 15:50:41 +00:00
|
|
|
if exists("g:loaded_syntastic_python_pylint_checker")
|
|
|
|
finish
|
|
|
|
endif
|
2013-09-20 07:49:19 +03:00
|
|
|
let g:loaded_syntastic_python_pylint_checker = 1
|
|
|
|
|
|
|
|
let s:pylint_new = -1
|
2013-02-21 15:50:41 +00:00
|
|
|
|
2013-10-28 17:30:25 +02:00
|
|
|
function! SyntaxCheckers_python_pylint_IsAvailable() dict
|
|
|
|
let exe = self.getExec()
|
|
|
|
let s:pylint_new = executable(exe) ? s:PylintNew(exe) : -1
|
2013-09-20 07:49:19 +03:00
|
|
|
return s:pylint_new >= 0
|
2013-01-24 00:01:30 +00:00
|
|
|
endfunction
|
|
|
|
|
2013-10-28 13:53:33 +02:00
|
|
|
function! SyntaxCheckers_python_pylint_GetLocList() dict
|
2013-01-20 11:07:05 +00:00
|
|
|
let makeprg = syntastic#makeprg#build({
|
2013-05-10 14:11:07 +03:00
|
|
|
\ 'exe': 'pylint',
|
2013-09-20 07:49:19 +03:00
|
|
|
\ 'args': (s:pylint_new ? '--msg-template="{path}:{line}: [{msg_id}] {msg}" -r n' : '-f parseable -r n -i y'),
|
2013-10-28 13:53:33 +02:00
|
|
|
\ 'checker': self })
|
2013-05-31 21:05:45 +03:00
|
|
|
|
2013-04-10 11:48:17 +03:00
|
|
|
let errorformat =
|
2013-08-07 12:01:45 +03:00
|
|
|
\ '%A%f:%l: %m,' .
|
|
|
|
\ '%A%f:(%l): %m,' .
|
2013-05-10 14:11:07 +03:00
|
|
|
\ '%-Z%p^%.%#,' .
|
|
|
|
\ '%-G%.%#'
|
2013-01-20 11:07:05 +00:00
|
|
|
|
2013-05-10 14:11:07 +03:00
|
|
|
let loclist=SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
|
|
|
\ 'postprocess': ['sort'] })
|
2013-02-06 15:29:56 +02:00
|
|
|
|
2013-04-15 11:21:52 +03:00
|
|
|
for n in range(len(loclist))
|
2013-08-12 11:22:12 +03:00
|
|
|
let type = loclist[n]['text'][1]
|
|
|
|
if type =~# '\m^[EF]'
|
|
|
|
let loclist[n]['type'] = 'E'
|
|
|
|
elseif type =~# '\m^[CRW]'
|
|
|
|
let loclist[n]['type'] = 'W'
|
|
|
|
else
|
|
|
|
let loclist[n]['valid'] = 0
|
|
|
|
endif
|
2013-08-07 12:01:45 +03:00
|
|
|
let loclist[n]['vcol'] = 0
|
2013-04-15 11:21:52 +03:00
|
|
|
endfor
|
2013-01-20 12:27:19 +00:00
|
|
|
|
2013-05-10 14:11:07 +03:00
|
|
|
return loclist
|
2013-01-20 12:27:19 +00:00
|
|
|
endfunction
|
2013-01-24 00:01:30 +00:00
|
|
|
|
2013-10-28 17:30:25 +02:00
|
|
|
function! s:PylintNew(exe)
|
2013-09-20 01:16:36 +03:00
|
|
|
try
|
2013-10-08 18:24:14 +03:00
|
|
|
" On Windows the version is shown as "pylint-script.py 1.0.0".
|
|
|
|
" On Gentoo Linux it's "pylint-python2.7 0.28.0". Oh, joy. :)
|
2013-10-28 17:30:25 +02:00
|
|
|
let pylint_version = filter(split(system(a:exe . ' --version'), '\m, \=\|\n'), 'v:val =~# ''\m^pylint\>''')[0]
|
2013-10-08 18:24:14 +03:00
|
|
|
let pylint_version = substitute(pylint_version, '\v^\S+\s+', '', '')
|
2013-09-24 08:39:07 +03:00
|
|
|
let ret = syntastic#util#versionIsAtLeast(syntastic#util#parseVersion(pylint_version), [1])
|
2013-09-24 21:43:12 +03:00
|
|
|
catch /^Vim\%((\a\+)\)\=:E684/
|
2013-09-20 07:49:19 +03:00
|
|
|
call syntastic#util#error("checker python/pylint: can't parse version string (abnormal termination?)")
|
|
|
|
let ret = -1
|
2013-09-20 01:16:36 +03:00
|
|
|
endtry
|
2013-09-20 07:49:19 +03:00
|
|
|
return ret
|
2013-08-07 12:01:45 +03:00
|
|
|
endfunction
|
|
|
|
|
2013-01-24 00:01:30 +00:00
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'python',
|
2013-01-27 20:08:30 +00:00
|
|
|
\ 'name': 'pylint' })
|