ale/ale_linters/cpp/cpplint.vim

20 lines
579 B
VimL
Raw Normal View History

2017-05-10 17:41:58 +00:00
" Author: Dawid Kurek https://github.com/dawikur
" Description: cpplint for cpp files
if !exists('g:ale_cpp_cpplint_options')
let g:ale_cpp_cpplint_options = ''
endif
function! ale_linters#cpp#cpplint#GetCommand(buffer) abort
return 'cpplint ' . ale#Var(a:buffer, 'cpp_cpplint_options') . ' %s'
endfunction
2017-05-10 17:41:58 +00:00
call ale#linter#Define('cpp', {
\ 'name': 'cpplint',
\ 'output_stream': 'stderr',
\ 'executable': 'cpplint',
\ 'command_callback': 'ale_linters#cpp#cpplint#GetCommand',
2017-05-10 17:41:58 +00:00
\ 'callback': 'ale#handlers#cpplint#HandleCppLintFormat',
\ 'lint_file': 1,
\})