syntastic/syntax_checkers/ruby/flog.vim

93 lines
2.7 KiB
VimL
Raw Normal View History

2015-07-17 12:03:50 -04:00
"============================================================================
"File: flog.vim
"Description: Syntax checking plugin for syntastic.vim
"Maintainer: Tim Carry <tim at pixelastic dot com>
"License: This program is free software. It comes without any warranty,
" to the extent permitted by applicable law. You can redistribute
" it and/or modify it under the terms of the Do What The Fuck You
" Want To Public License, Version 2, as published by Sam Hocevar.
" See http://sam.zoy.org/wtfpl/COPYING for more details.
"
"============================================================================
if exists('g:loaded_syntastic_ruby_flog_checker')
finish
endif
let g:loaded_syntastic_ruby_flog_checker = 1
if !exists('g:syntastic_ruby_flog_threshold_warning')
let g:syntastic_ruby_flog_threshold_warning = 45
endif
if !exists('g:syntastic_ruby_flog_threshold_error')
let g:syntastic_ruby_flog_threshold_error = 90
endif
2015-07-19 11:33:36 -04:00
if !exists('g:syntastic_ruby_flog_sort')
let g:syntastic_ruby_flog_sort = 1
endif
2015-07-17 12:03:50 -04:00
let s:save_cpo = &cpo
set cpo&vim
2015-07-19 11:33:36 -04:00
function! SyntaxCheckers_ruby_flog_GetLocList() dict " {{{1
let makeprg = self.makeprgBuild({ 'args': '-a' })
2015-07-17 12:03:50 -04:00
" Example output:
" 93.25: MyClass::my_method my_file:42
2015-07-19 11:33:36 -04:00
let errorformat = '%\m%\s%#%m: %.%# %f:%l'
2015-07-17 12:03:50 -04:00
let loclist = SyntasticMake({
\ 'makeprg': makeprg,
2015-07-19 11:33:36 -04:00
\ 'errorformat': errorformat,
\ 'subtype': 'Style' })
2015-07-17 12:03:50 -04:00
2015-07-19 11:33:36 -04:00
let trail_w = s:_float2str(g:syntastic_ruby_flog_threshold_warning) . ')'
let trail_e = s:_float2str(g:syntastic_ruby_flog_threshold_error) . ')'
2015-07-17 12:03:50 -04:00
for e in loclist
2015-07-19 11:33:36 -04:00
let score = s:_str2float(e['text'])
2015-07-17 12:03:50 -04:00
2015-07-19 11:33:36 -04:00
let e['text'] = 'Complexity is too high (' . s:_float2str(score) . '/'
if score < g:syntastic_ruby_flog_threshold_warning
let e['valid'] = 0
elseif score < g:syntastic_ruby_flog_threshold_error
let e['type'] = 'W'
let e['text'] .= trail_w
2015-07-17 12:03:50 -04:00
else
2015-07-19 11:33:36 -04:00
let e['type'] = 'E'
let e['text'] .= trail_e
2015-07-17 12:03:50 -04:00
endif
endfor
return loclist
2015-07-19 11:33:36 -04:00
endfunction " }}}1
" Utilities {{{1
function! s:_float2str_smart(val) " {{{2
return printf('%.1f', a:val)
endfunction " }}}2
function! s:_float2str_dumb(val) " {{{2
return a:val
endfunction " }}}2
if !exists('s:_str2float')
let s:_str2float = function(exists('*str2float') ? 'str2float' : 'str2nr')
endif
if !exists('s:_float2str')
let s:_float2str = function(has('float') ? 's:_float2str_smart' : 's:_float2str_dumb')
endif
" }}}1
2015-07-17 12:03:50 -04:00
call g:SyntasticRegistry.CreateAndRegisterChecker({
\ 'filetype': 'ruby',
\ 'name': 'flog'})
let &cpo = s:save_cpo
unlet s:save_cpo
" vim: set sw=4 sts=4 et fdm=marker: