diff options
author | Dan George <dgeorge83616@yahoo.com> | 2021-11-17 20:23:38 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-18 13:23:38 +0900 |
commit | 3ca66e44bdedca31a5f9de2fa304d2cfc8c2aae3 (patch) | |
tree | 389e7851ab4981c5327bd65ca67a55502ba593d7 | |
parent | 2cfeabd1b595805e506e7d79347e30e9a52084d1 (diff) | |
download | ale-3ca66e44bdedca31a5f9de2fa304d2cfc8c2aae3.zip |
Restore checkmake linebreaks (#3986)
* Add cppcheck handler match on misra msg
* Add linebreak to checkmake formatter
Co-authored-by: Dan George <dgeorge@anduril.com>
-rw-r--r-- | ale_linters/make/checkmake.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ale_linters/make/checkmake.vim b/ale_linters/make/checkmake.vim index 5ebdf91e..d5f95d6f 100644 --- a/ale_linters/make/checkmake.vim +++ b/ale_linters/make/checkmake.vim @@ -20,6 +20,6 @@ endfunction call ale#linter#Define('make', { \ 'name': 'checkmake', \ 'executable': 'checkmake', -\ 'command': 'checkmake %s --format="{{.LineNumber}}:{{.Rule}}:{{.Violation}}"', +\ 'command': 'checkmake %s --format="{{.LineNumber}}:{{.Rule}}:{{.Violation}}{{\"\r\n\"}}"', \ 'callback': 'ale_linters#make#checkmake#Handle', \}) |