syntastic/syntax_checkers/python/flake8.vim

76 lines
2.1 KiB
VimL
Raw Normal View History

"============================================================================
"File: flake8.vim
2017-09-15 14:04:16 -04:00
"Description: Syntax checking plugin for syntastic
"Authors: Sylvain Soliman <Sylvain dot Soliman+git at gmail dot com>
" kstep <me@kstep.me>
"
"============================================================================
2015-03-25 12:44:34 -04:00
if exists('g:loaded_syntastic_python_flake8_checker')
finish
endif
let g:loaded_syntastic_python_flake8_checker = 1
let s:save_cpo = &cpo
set cpo&vim
function! SyntaxCheckers_python_flake8_GetHighlightRegex(item)
return SyntaxCheckers_python_pyflakes_GetHighlightRegex(a:item)
endfunction
function! SyntaxCheckers_python_flake8_GetLocList() dict
let makeprg = self.makeprgBuild({})
let errorformat =
2013-09-19 18:45:58 -04:00
\ '%E%f:%l: could not compile,%-Z%p^,' .
\ '%A%f:%l:%c: %t%n: %m,' .
2014-01-04 03:01:16 -05:00
\ '%A%f:%l:%c: %t%n %m,' .
\ '%A%f:%l: %t%n: %m,' .
2014-01-04 03:01:16 -05:00
\ '%A%f:%l: %t%n %m,' .
\ '%-G%.%#'
let env = syntastic#util#isRunningWindows() ? {} : { 'TERM': 'dumb' }
2014-01-04 03:01:16 -05:00
let loclist = SyntasticMake({
\ 'makeprg': makeprg,
\ 'errorformat': errorformat,
\ 'env': env })
2014-01-04 03:01:16 -05:00
for e in loclist
" E*** and W*** are pep8 errors
" F*** are PyFlakes codes
" C*** are McCabe complexity messages
" N*** are naming conventions from pep8-naming
2017-09-01 00:51:15 -04:00
" H*** are OpenStack messages
2014-01-04 03:01:16 -05:00
if has_key(e, 'nr')
let e['text'] .= printf(' [%s%03d]', e['type'], e['nr'])
" E901 are syntax errors
" E902 are I/O errors
2015-02-23 10:09:00 -05:00
if e['type'] ==? 'E' && e['nr'] !~# '\m^9'
2014-01-04 03:01:16 -05:00
let e['subtype'] = 'Style'
endif
call remove(e, 'nr')
endif
if e['type'] =~? '\m^[CHNW]'
2014-01-04 03:01:16 -05:00
let e['subtype'] = 'Style'
endif
let e['type'] = e['type'] =~? '\m^[EFHC]' ? 'E' : 'W'
2014-01-04 03:01:16 -05:00
endfor
return loclist
endfunction
refactor how we represent and store checkers using python as a demo Add 2 classes: SyntasticChecker and SyntasticRegistry. SyntasticChecker represents a checker. It holds funcrefs to the checker func, the highlight regex func and a new `isAvailable()` func (that essentially just checks if the checker exe is installed) SyntasticRegistry is responsible for: * loading checkers * storing checkers * fetching the checkers to use according to availability and the users settings Motivation/benefits: * in the current system only one checker can be loaded per filetype * syntax checkers cant be "chained" together * the system is hard to add features to since fundamental concepts like syntax checkers and location lists arent represented explicitly Things left to do: * add a call to g:SyntasticRegistry.CreateAndRegisterChecker() to all checkers * add an `isAvailable` function to all checkers * move all checkers into `syntax_checkers/filetype/checkername.vim` - g:SyntasticRegistry assumes this layout, and its a good idea anyway for consistency and it makes it easier for users to add their own checkers Things to do after all of the above: * add a LocationList class and move all the filtering functions onto it * possibly add an Error class that wraps up each item in a loc list Random notes: * with the new system you can select the checkers to use with e.g. `let g:syntastic_python_checkers=['flake8', 'pylint']` This will try flake8 first, and if no errors are detected it will move onto pylint.
2013-01-23 19:01:30 -05:00
runtime! syntax_checkers/python/pyflakes.vim
refactor how we represent and store checkers using python as a demo Add 2 classes: SyntasticChecker and SyntasticRegistry. SyntasticChecker represents a checker. It holds funcrefs to the checker func, the highlight regex func and a new `isAvailable()` func (that essentially just checks if the checker exe is installed) SyntasticRegistry is responsible for: * loading checkers * storing checkers * fetching the checkers to use according to availability and the users settings Motivation/benefits: * in the current system only one checker can be loaded per filetype * syntax checkers cant be "chained" together * the system is hard to add features to since fundamental concepts like syntax checkers and location lists arent represented explicitly Things left to do: * add a call to g:SyntasticRegistry.CreateAndRegisterChecker() to all checkers * add an `isAvailable` function to all checkers * move all checkers into `syntax_checkers/filetype/checkername.vim` - g:SyntasticRegistry assumes this layout, and its a good idea anyway for consistency and it makes it easier for users to add their own checkers Things to do after all of the above: * add a LocationList class and move all the filtering functions onto it * possibly add an Error class that wraps up each item in a loc list Random notes: * with the new system you can select the checkers to use with e.g. `let g:syntastic_python_checkers=['flake8', 'pylint']` This will try flake8 first, and if no errors are detected it will move onto pylint.
2013-01-23 19:01:30 -05:00
call g:SyntasticRegistry.CreateAndRegisterChecker({
\ 'filetype': 'python',
\ 'name': 'flake8'})
let &cpo = s:save_cpo
unlet s:save_cpo
2015-01-04 05:46:54 -05:00
" vim: set sw=4 sts=4 et fdm=marker: