summaryrefslogtreecommitdiff
path: root/ale_linters/cpp/clang.vim
blob: 7cd869681332ab3bfd5c1655bc59b55197c180b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
" Author: Tomota Nakamura <https://github.com/tomotanakamura>
" Description: clang linter for cpp files

" Set this option to change the Clang options for warnings for CPP.
if !exists('g:ale_cpp_clang_options')
    let g:ale_cpp_clang_options = '-std=c++14 -Wall'
endif

call ale#linter#Define('cpp', {
\   'name': 'clang',
\   'output_stream': 'stderr',
\   'executable': 'clang++',
\   'command': 'clang++ -S -x c++ -fsyntax-only '
\       . g:ale_cpp_clang_options
\       . ' -',
\   'callback': 'ale#handlers#HandleGCCFormat',
\})