From d16e82d468eb0d5bb1e662ac4812c0ca6fc0fc64 Mon Sep 17 00:00:00 2001 From: Yaroslav Date: Tue, 25 Feb 2020 14:47:03 +0300 Subject: reorganized repo to be easier to use with GNU stow; added script to stow --- .vim/autoload/neomake/makers/ft/ruby.vim | 90 -------------------------------- 1 file changed, 90 deletions(-) delete mode 100644 .vim/autoload/neomake/makers/ft/ruby.vim (limited to '.vim/autoload/neomake/makers/ft/ruby.vim') diff --git a/.vim/autoload/neomake/makers/ft/ruby.vim b/.vim/autoload/neomake/makers/ft/ruby.vim deleted file mode 100644 index ceb6a46..0000000 --- a/.vim/autoload/neomake/makers/ft/ruby.vim +++ /dev/null @@ -1,90 +0,0 @@ -" vim: ts=4 sw=4 et - -function! neomake#makers#ft#ruby#EnabledMakers() abort - return ['flog', 'mri', 'rubocop', 'reek', 'rubylint'] -endfunction - -function! neomake#makers#ft#ruby#rubocop() abort - return { - \ 'args': ['--format', 'emacs', '--force-exclusion', '--display-cop-names'], - \ 'errorformat': '%f:%l:%c: %t: %m,%E%f:%l: %m', - \ 'postprocess': function('neomake#makers#ft#ruby#RubocopEntryProcess'), - \ 'output_stream': 'stdout', - \ } -endfunction - -function! neomake#makers#ft#ruby#RubocopEntryProcess(entry) abort - if a:entry.type ==# 'F' " Fatal error which prevented further processing - let a:entry.type = 'E' - elseif a:entry.type ==# 'E' " Error for important programming issues - let a:entry.type = 'E' - elseif a:entry.type ==# 'W' " Warning for stylistic or minor programming issues - let a:entry.type = 'W' - elseif a:entry.type ==# 'R' " Refactor suggestion - let a:entry.type = 'W' - elseif a:entry.type ==# 'C' " Convention violation - let a:entry.type = 'I' - endif -endfunction - -function! neomake#makers#ft#ruby#rubylint() abort - return { - \ 'exe': 'ruby-lint', - \ 'args': ['--presenter', 'syntastic'], - \ 'errorformat': '%f:%t:%l:%c: %m', - \ } -endfunction - -function! neomake#makers#ft#ruby#mri() abort - let errorformat = '%-G%\m%.%#warning: %\%%(possibly %\)%\?useless use of == in void context,' - let errorformat .= '%-G%\%.%\%.%\%.%.%#,' - let errorformat .= - \ '%-GSyntax OK,'. - \ '%E%f:%l: syntax error\, %m,'. - \ '%Z%p^,'. - \ '%W%f:%l: warning: %m,'. - \ '%Z%p^,'. - \ '%W%f:%l: %m,'. - \ '%-C%.%#' - - return { - \ 'exe': 'ruby', - \ 'args': ['-c', '-T1', '-w'], - \ 'errorformat': errorformat, - \ 'output_stream': 'both', - \ } -endfunction - -function! neomake#makers#ft#ruby#jruby() abort - let errorformat = - \ '%-GSyntax OK for %f,'. - \ '%ESyntaxError in %f:%l: syntax error\, %m,'. - \ '%Z%p^,'. - \ '%W%f:%l: warning: %m,'. - \ '%Z%p^,'. - \ '%W%f:%l: %m,'. - \ '%-C%.%#' - - return { - \ 'exe': 'jruby', - \ 'args': ['-c', '-T1', '-w'], - \ 'errorformat': errorformat - \ } -endfunction - -function! neomake#makers#ft#ruby#reek() abort - return { - \ 'args': ['--format', 'text', '--single-line'], - \ 'errorformat': '%W%f:%l: %m', - \ } -endfunction - -function! neomake#makers#ft#ruby#flog() abort - return { - \ 'errorformat': - \ '%W%m %f:%l-%c,' . - \ '%-G\s%#,' . - \ '%-G%.%#: flog total,' . - \ '%-G%.%#: flog/method average,' - \ } -endfunction -- cgit v1.2.3