summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-05-02 22:44:08 +0100
committerw0rp <devw0rp@gmail.com>2017-05-02 22:44:08 +0100
commit3573975934f12588e431d902bb477429f635c747 (patch)
treefd22379339ea0d6e62e37343bdabdd8044a1a873
parenteb8bd26776fbdc57f0162d729260c4847645e145 (diff)
downloadale-3573975934f12588e431d902bb477429f635c747.zip
Fix #410 - Use compile_commands.json files for clang-tidy, and check files on disk instead
-rw-r--r--ale_linters/cpp/clangtidy.vim21
-rw-r--r--doc/ale-cpp.txt27
-rw-r--r--test/command_callback/test_clang_tidy_command_callback.vader31
3 files changed, 73 insertions, 6 deletions
diff --git a/ale_linters/cpp/clangtidy.vim b/ale_linters/cpp/clangtidy.vim
index 2acd345a..f538d14a 100644
--- a/ale_linters/cpp/clangtidy.vim
+++ b/ale_linters/cpp/clangtidy.vim
@@ -1,12 +1,24 @@
" Author: vdeurzen <tim@kompiler.org>, w0rp <devw0rp@gmail.com>
" Description: clang-tidy linter for cpp files
-" Set this option to change the clang-tidy options for warnings for C.
-let g:ale_cpp_clangtidy_options =
-\ get(g:, 'ale_cpp_clangtidy_options', '-std=c++14 -Wall')
+" Set this option to check the checks clang-tidy will apply.
+let g:ale_cpp_clangtidy_checks = get(g:, 'ale_cpp_clangtidy_checks', ['*'])
+
+" Set this option to manually set some options for clang-tidy.
+" This will disable compile_commands.json detection.
+let g:ale_cpp_clangtidy_options = get(g:, 'ale_cpp_clangtidy_options', '')
function! ale_linters#cpp#clangtidy#GetCommand(buffer) abort
- return 'clang-tidy %t -- ' . ale#Var(a:buffer, 'cpp_clangtidy_options')
+ let l:check_list = ale#Var(a:buffer, 'cpp_clangtidy_checks')
+ let l:check_option = !empty(l:check_list)
+ \ ? '-checks=' . shellescape(join(l:check_list, ',')) . ' '
+ \ : ''
+ let l:user_options = ale#Var(a:buffer, 'cpp_clangtidy_options')
+ let l:extra_options = !empty(l:user_options)
+ \ ? ' -- ' . l:user_options
+ \ : ''
+
+ return 'clang-tidy ' . l:check_option . '%s' . l:extra_options
endfunction
call ale#linter#Define('cpp', {
@@ -15,4 +27,5 @@ call ale#linter#Define('cpp', {
\ 'executable': 'clang-tidy',
\ 'command_callback': 'ale_linters#cpp#clangtidy#GetCommand',
\ 'callback': 'ale#handlers#gcc#HandleGCCFormat',
+\ 'lint_file': 1,
\})
diff --git a/doc/ale-cpp.txt b/doc/ale-cpp.txt
index 3baa767a..71673826 100644
--- a/doc/ale-cpp.txt
+++ b/doc/ale-cpp.txt
@@ -16,12 +16,35 @@ g:ale_cpp_clang_options *g:ale_cpp_clang_options*
-------------------------------------------------------------------------------
clangtidy *ale-cpp-clangtidy*
+`clang-tidy` will be run only when files are saved to disk, so that
+`compile_commands.json` files can be used. It is recommended to use this
+linter in combination with `compile_commands.json` files.
+
+
+g:ale_cpp_clangtidy_checks *g:ale_cpp_clangtidy_checks*
+ *b:ale_cpp_clangtidy_checks*
+ Type: |List|
+ Default: `['*']`
+
+ The checks to enable for clang-tidy with the `-checks` argument.
+
+ All options will be joined with commas, and escaped appropriately for
+ the shell. The `-checks` flag can be removed entirely by setting this
+ option to an empty List.
+
+
g:ale_cpp_clangtidy_options *g:ale_cpp_clangtidy_options*
*b:ale_cpp_clangtidy_options*
Type: |String|
- Default: `'-std=c++14 -Wall'`
+ Default: `''`
+
+ This variable can be changed to modify flags given to clang-tidy.
- This variable can be changed to modify flags given to clangtidy.
+ Setting this variable to a non-empty string will cause the `--` argument
+ to be passed to `clang-tidy`, which will mean that detection of
+ `compile_commands.json` files for compile command databases will be
+ disabled. Only set this option if you want to control compiler flags
+ entirely manually.
-------------------------------------------------------------------------------
diff --git a/test/command_callback/test_clang_tidy_command_callback.vader b/test/command_callback/test_clang_tidy_command_callback.vader
new file mode 100644
index 00000000..46d8a3a6
--- /dev/null
+++ b/test/command_callback/test_clang_tidy_command_callback.vader
@@ -0,0 +1,31 @@
+Before:
+ Save g:ale_cpp_clangtidy_checks
+ Save g:ale_cpp_clangtidy_options
+ runtime ale_linters/cpp/clangtidy.vim
+
+After:
+ Restore
+ call ale#linter#Reset()
+
+Execute(The clangtidy command default should be correct):
+ AssertEqual
+ \ 'clang-tidy -checks=''*'' %s',
+ \ ale_linters#cpp#clangtidy#GetCommand(bufnr(''))
+
+Execute(You should be able to remove the -checks option for clang-tidy):
+ let g:ale_cpp_clangtidy_checks = []
+ AssertEqual
+ \ 'clang-tidy %s',
+ \ ale_linters#cpp#clangtidy#GetCommand(bufnr(''))
+
+Execute(You should be able to set other checks for clang-tidy):
+ let g:ale_cpp_clangtidy_checks = ['-*', 'clang-analyzer-*']
+ AssertEqual
+ \ 'clang-tidy -checks=''-*,clang-analyzer-*'' %s',
+ \ ale_linters#cpp#clangtidy#GetCommand(bufnr(''))
+
+Execute(You should be able to manually set compiler flags for clang-tidy):
+ let g:ale_cpp_clangtidy_options = '-Wall'
+ AssertEqual
+ \ 'clang-tidy -checks=''*'' %s -- -Wall',
+ \ ale_linters#cpp#clangtidy#GetCommand(bufnr(''))