f49f615ef6
This PR first and formost implements support for dot-seperate filetypes, a very trivial change. This closes #132 But more importantly, this PR vastly improves the test quality for `ale#linter#Get`. It enables us to reset the state of ale's internal linter cache, to facilitate better testing, as well as making use of mocked linters instead of depending on linters on disk (which may change). In addition, a dummy linter is defined to test the autoloading behavior. Header guards were removed from all linters as: * A: ale won't try and load linters if they already exist in memory * B: we can't reset state for testing if they can't be loaded again
21 lines
583 B
VimL
21 lines
583 B
VimL
" Author: w0rp <devw0rp@gmail.com>
|
|
" Description: gcc linter for c files
|
|
|
|
" Set this option to change the GCC options for warnings for C.
|
|
if !exists('g:ale_c_gcc_options')
|
|
" let g:ale_c_gcc_options = '-Wall'
|
|
" let g:ale_c_gcc_options = '-std=c99 -Wall'
|
|
" c11 compatible
|
|
let g:ale_c_gcc_options = '-std=c11 -Wall'
|
|
endif
|
|
|
|
call ale#linter#Define('c', {
|
|
\ 'name': 'gcc',
|
|
\ 'output_stream': 'stderr',
|
|
\ 'executable': 'gcc',
|
|
\ 'command': 'gcc -S -x c -fsyntax-only '
|
|
\ . g:ale_c_gcc_options
|
|
\ . ' -',
|
|
\ 'callback': 'ale#handlers#HandleGCCFormat',
|
|
\})
|