mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-07 05:04:28 +08:00
#703 Add arguments to avoid generating plist files if no build directory is detected for clang-check
This commit is contained in:
@@ -26,20 +26,28 @@ Execute(The executable should be configurable):
|
||||
|
||||
Execute(The executable should be used in the command):
|
||||
AssertEqual
|
||||
\ ale#Escape('clang-check') . ' -analyze %s',
|
||||
\ ale#Escape('clang-check')
|
||||
\ . ' -analyze %s'
|
||||
\ . ' -extra-arg -Xanalyzer -extra-arg -analyzer-output=text',
|
||||
\ ale_linters#cpp#clangcheck#GetCommand(bufnr(''))
|
||||
|
||||
let b:ale_cpp_clangcheck_executable = 'foobar'
|
||||
|
||||
" The extra arguments in the command are used to prevent .plist files from
|
||||
" being generated.
|
||||
AssertEqual
|
||||
\ ale#Escape('foobar') . ' -analyze %s',
|
||||
\ ale#Escape('foobar')
|
||||
\ . ' -analyze %s'
|
||||
\ . ' -extra-arg -Xanalyzer -extra-arg -analyzer-output=text',
|
||||
\ ale_linters#cpp#clangcheck#GetCommand(bufnr(''))
|
||||
|
||||
Execute(The options should be configurable):
|
||||
let b:ale_cpp_clangcheck_options = '--something'
|
||||
|
||||
AssertEqual
|
||||
\ ale#Escape('clang-check') . ' -analyze %s --something',
|
||||
\ ale#Escape('clang-check')
|
||||
\ . ' -analyze %s --something'
|
||||
\ . ' -extra-arg -Xanalyzer -extra-arg -analyzer-output=text',
|
||||
\ ale_linters#cpp#clangcheck#GetCommand(bufnr(''))
|
||||
|
||||
Execute(The build directory should be used when set):
|
||||
|
||||
Reference in New Issue
Block a user