diff options
author | Justin Huang <yang.huang@ymail.com> | 2022-02-03 06:32:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-03 22:32:42 +0900 |
commit | d1e2aaf85dc81bad223065eec474d9f090fec70e (patch) | |
tree | 4db1b7d454c0604b53fe0d73c1d1da5a55a5e65b /ale_linters/c | |
parent | a81512cfd2d7eed294f4ddc9b525a015e5ec9285 (diff) | |
download | ale-d1e2aaf85dc81bad223065eec474d9f090fec70e.zip |
enable using cpplint for c (#3008)
* enable using cpplint for c
* fix tag alignment
* fix tag alignment trial #2
Co-authored-by: Justin Huang <justin.huang@perceive.io>
Diffstat (limited to 'ale_linters/c')
-rw-r--r-- | ale_linters/c/cpplint.vim | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/ale_linters/c/cpplint.vim b/ale_linters/c/cpplint.vim new file mode 100644 index 00000000..4b997941 --- /dev/null +++ b/ale_linters/c/cpplint.vim @@ -0,0 +1,20 @@ +" Author: Justin Huang <justin.y.huang@live.com> +" Description: cpplint for c files + +call ale#Set('c_cpplint_executable', 'cpplint') +call ale#Set('c_cpplint_options', '') + +function! ale_linters#c#cpplint#GetCommand(buffer) abort + let l:options = ale#Var(a:buffer, 'c_cpplint_options') + + return '%e' . ale#Pad(l:options) . ' %s' +endfunction + +call ale#linter#Define('c', { +\ 'name': 'cpplint', +\ 'output_stream': 'stderr', +\ 'executable': {b -> ale#Var(b, 'c_cpplint_executable')}, +\ 'command': function('ale_linters#c#cpplint#GetCommand'), +\ 'callback': 'ale#handlers#cpplint#HandleCppLintFormat', +\ 'lint_file': 1, +\}) |