2012-02-20 05:20:48 -05:00
|
|
|
"============================================================================
|
|
|
|
"File: pylint.vim
|
|
|
|
"Description: Syntax checking plugin for syntastic.vim
|
|
|
|
"Author: Parantapa Bhattacharya <parantapa at gmail dot com>
|
|
|
|
"
|
|
|
|
"============================================================================
|
2014-01-03 04:29:08 -05:00
|
|
|
|
2013-02-21 10:50:41 -05:00
|
|
|
if exists("g:loaded_syntastic_python_pylint_checker")
|
|
|
|
finish
|
|
|
|
endif
|
2013-09-20 00:49:19 -04:00
|
|
|
let g:loaded_syntastic_python_pylint_checker = 1
|
|
|
|
|
|
|
|
let s:pylint_new = -1
|
2013-02-21 10:50:41 -05:00
|
|
|
|
2014-01-03 04:29:08 -05:00
|
|
|
let s:save_cpo = &cpo
|
|
|
|
set cpo&vim
|
|
|
|
|
2013-10-28 11:30:25 -04:00
|
|
|
function! SyntaxCheckers_python_pylint_IsAvailable() dict
|
|
|
|
let exe = self.getExec()
|
|
|
|
let s:pylint_new = executable(exe) ? s:PylintNew(exe) : -1
|
2013-09-20 00:49:19 -04:00
|
|
|
return s:pylint_new >= 0
|
2013-01-23 19:01:30 -05:00
|
|
|
endfunction
|
|
|
|
|
2013-10-28 07:53:33 -04:00
|
|
|
function! SyntaxCheckers_python_pylint_GetLocList() dict
|
2013-11-01 05:51:47 -04:00
|
|
|
let makeprg = self.makeprgBuild({
|
2014-01-28 14:44:44 -05:00
|
|
|
\ 'args_after': (s:pylint_new ? '-f text --msg-template="{path}:{line}:{column}:{C}: [{symbol}] {msg}" -r n' : '-f parseable -r n -i y') })
|
2013-05-31 14:05:45 -04:00
|
|
|
|
2013-04-10 04:48:17 -04:00
|
|
|
let errorformat =
|
2014-01-23 15:20:00 -05:00
|
|
|
\ '%A%f:%l:%c:%t: %m,' .
|
2013-08-07 05:01:45 -04:00
|
|
|
\ '%A%f:%l: %m,' .
|
|
|
|
\ '%A%f:(%l): %m,' .
|
2013-05-10 07:11:07 -04:00
|
|
|
\ '%-Z%p^%.%#,' .
|
|
|
|
\ '%-G%.%#'
|
2013-01-20 06:07:05 -05:00
|
|
|
|
2013-05-10 07:11:07 -04:00
|
|
|
let loclist=SyntasticMake({
|
|
|
|
\ 'makeprg': makeprg,
|
|
|
|
\ 'errorformat': errorformat,
|
2013-12-11 03:43:10 -05:00
|
|
|
\ 'postprocess': ['sort'],
|
|
|
|
\ 'returns': range(32) })
|
2013-02-06 08:29:56 -05:00
|
|
|
|
2013-11-08 03:45:15 -05:00
|
|
|
for e in loclist
|
2014-01-23 15:20:00 -05:00
|
|
|
if !s:pylint_new
|
|
|
|
let e['type'] = e['text'][1]
|
|
|
|
endif
|
|
|
|
|
|
|
|
if e['type'] =~? '\m^[EF]'
|
2013-11-04 16:00:51 -05:00
|
|
|
let e['type'] = 'E'
|
2014-01-23 15:20:00 -05:00
|
|
|
elseif e['type'] =~? '\m^[CRW]'
|
2013-11-04 16:00:51 -05:00
|
|
|
let e['type'] = 'W'
|
2013-08-12 04:22:12 -04:00
|
|
|
else
|
2013-11-04 16:00:51 -05:00
|
|
|
let e['valid'] = 0
|
2013-08-12 04:22:12 -04:00
|
|
|
endif
|
2014-02-04 04:53:26 -05:00
|
|
|
|
|
|
|
let e['col'] += 1
|
2013-11-04 16:00:51 -05:00
|
|
|
let e['vcol'] = 0
|
2013-04-15 04:21:52 -04:00
|
|
|
endfor
|
2013-01-20 07:27:19 -05:00
|
|
|
|
2013-05-10 07:11:07 -04:00
|
|
|
return loclist
|
2013-01-20 07:27:19 -05:00
|
|
|
endfunction
|
2013-01-23 19:01:30 -05:00
|
|
|
|
2013-10-28 11:30:25 -04:00
|
|
|
function! s:PylintNew(exe)
|
2013-09-19 18:16:36 -04:00
|
|
|
try
|
2013-10-08 11:24:14 -04: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 11:30:25 -04:00
|
|
|
let pylint_version = filter(split(system(a:exe . ' --version'), '\m, \=\|\n'), 'v:val =~# ''\m^pylint\>''')[0]
|
2013-10-08 11:24:14 -04:00
|
|
|
let pylint_version = substitute(pylint_version, '\v^\S+\s+', '', '')
|
2013-09-24 01:39:07 -04:00
|
|
|
let ret = syntastic#util#versionIsAtLeast(syntastic#util#parseVersion(pylint_version), [1])
|
2013-09-24 14:43:12 -04:00
|
|
|
catch /^Vim\%((\a\+)\)\=:E684/
|
2013-11-14 03:13:05 -05:00
|
|
|
call syntastic#log#error("checker python/pylint: can't parse version string (abnormal termination?)")
|
2013-09-20 00:49:19 -04:00
|
|
|
let ret = -1
|
2013-09-19 18:16:36 -04:00
|
|
|
endtry
|
2013-09-20 00:49:19 -04:00
|
|
|
return ret
|
2013-08-07 05:01:45 -04:00
|
|
|
endfunction
|
|
|
|
|
2013-01-23 19:01:30 -05:00
|
|
|
call g:SyntasticRegistry.CreateAndRegisterChecker({
|
|
|
|
\ 'filetype': 'python',
|
2013-01-27 15:08:30 -05:00
|
|
|
\ 'name': 'pylint' })
|
2014-01-03 04:29:08 -05:00
|
|
|
|
|
|
|
let &cpo = s:save_cpo
|
|
|
|
unlet s:save_cpo
|
|
|
|
|
|
|
|
" vim: set et sts=4 sw=4:
|