mirror of
https://github.com/dense-analysis/ale
synced 2024-12-17 20:05:31 +00:00
ae1d051504
* Remove some tests we no longer need * Delete blocks of redundant code * Compress some tests together to simplify them * Remove a little code for ancient linter versions * Escape more executables we didn't escape before * Rename a deno option that didn't match our conventions
79 lines
2.4 KiB
Plaintext
79 lines
2.4 KiB
Plaintext
Before:
|
|
Save g:ale_c_parse_makefile
|
|
let g:ale_c_parse_makefile = 0
|
|
|
|
call ale#assert#SetUpLinterTest('cpp', 'clangtidy')
|
|
call ale#test#SetFilename('test.cpp')
|
|
|
|
After:
|
|
call ale#assert#TearDownLinterTest()
|
|
|
|
Execute(The clangtidy command default should be correct):
|
|
AssertLinter 'clang-tidy',
|
|
\ ale#Escape('clang-tidy') . ' %s'
|
|
|
|
Execute(You should be able to set other checks for clang-tidy):
|
|
let b:ale_cpp_clangtidy_checks = ['-*', 'clang-analyzer-*']
|
|
|
|
AssertLinter 'clang-tidy',
|
|
\ ale#Escape('clang-tidy')
|
|
\ . ' -checks=' . ale#Escape('-*,clang-analyzer-*') . ' %s'
|
|
|
|
Execute(You should be able to manually set compiler flags for clang-tidy):
|
|
let b:ale_cpp_clangtidy_checks = ['*']
|
|
let b:ale_cpp_clangtidy_options = '-Wall'
|
|
|
|
AssertLinter 'clang-tidy',
|
|
\ ale#Escape('clang-tidy') . ' -checks=' . ale#Escape('*') . ' %s -- -Wall'
|
|
|
|
Execute(You should be able to manually set flags for clang-tidy):
|
|
let b:ale_cpp_clangtidy_extra_options = '-config='
|
|
|
|
AssertLinter 'clang-tidy',
|
|
\ ale#Escape('clang-tidy') . ' ' . ale#Escape('-config=') . ' %s'
|
|
|
|
Execute(The build directory should be configurable):
|
|
let b:ale_cpp_clangtidy_checks = ['*']
|
|
let b:ale_c_build_dir = '/foo/bar'
|
|
|
|
AssertLinter 'clang-tidy',
|
|
\ ale#Escape('clang-tidy')
|
|
\ . ' -checks=' . ale#Escape('*') . ' %s'
|
|
\ . ' -p ' . ale#Escape('/foo/bar')
|
|
|
|
Execute(The build directory setting should override the options):
|
|
let b:ale_cpp_clangtidy_checks = ['*']
|
|
let b:ale_c_build_dir = '/foo/bar'
|
|
let b:ale_cpp_clangtidy_options = '-Wall'
|
|
|
|
AssertLinter 'clang-tidy',
|
|
\ ale#Escape('clang-tidy')
|
|
\ . ' -checks=' . ale#Escape('*') . ' %s'
|
|
\ . ' -p ' . ale#Escape('/foo/bar')
|
|
|
|
Execute(The build directory should be used for header files):
|
|
call ale#test#SetFilename('test.h')
|
|
|
|
let b:ale_cpp_clangtidy_checks = ['*']
|
|
let b:ale_c_build_dir = '/foo/bar'
|
|
let b:ale_cpp_clangtidy_options = '-Wall'
|
|
|
|
AssertLinter 'clang-tidy',
|
|
\ ale#Escape('clang-tidy')
|
|
\ . ' -checks=' . ale#Escape('*') . ' %s'
|
|
\ . ' -p ' . ale#Escape('/foo/bar')
|
|
|
|
call ale#test#SetFilename('test.hpp')
|
|
|
|
AssertLinter 'clang-tidy',
|
|
\ ale#Escape('clang-tidy')
|
|
\ . ' -checks=' . ale#Escape('*') . ' %s'
|
|
\ . ' -p ' . ale#Escape('/foo/bar')
|
|
|
|
Execute(The executable should be configurable):
|
|
let b:ale_cpp_clangtidy_checks = ['*']
|
|
let b:ale_cpp_clangtidy_executable = 'foobar'
|
|
|
|
AssertLinter 'foobar',
|
|
\ ale#Escape('foobar') . ' -checks=' . ale#Escape('*') . ' %s'
|