diff options
author | Eddie Lebow <elebow@users.noreply.github.com> | 2019-08-13 00:15:53 -0400 |
---|---|---|
committer | Eddie Lebow <elebow@users.noreply.github.com> | 2019-08-18 23:28:32 -0400 |
commit | 08a5bfcaa911afbd04d696b49a09eb83beef50bb (patch) | |
tree | 9585625858bc62857c29f4850e8ff7315d62cf84 /ale_linters/markdown | |
parent | dd1e1025b8a9b13cb7966bf2baa3e6b42a862857 (diff) | |
download | ale-08a5bfcaa911afbd04d696b49a09eb83beef50bb.zip |
mdl: Use JSON output instead of parsing text
Also add test coverage for the mdl handler.
Diffstat (limited to 'ale_linters/markdown')
-rw-r--r-- | ale_linters/markdown/mdl.vim | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/ale_linters/markdown/mdl.vim b/ale_linters/markdown/mdl.vim index 305f5359..fd44de6e 100644 --- a/ale_linters/markdown/mdl.vim +++ b/ale_linters/markdown/mdl.vim @@ -17,18 +17,17 @@ function! ale_linters#markdown#mdl#GetCommand(buffer) abort let l:options = ale#Var(a:buffer, 'markdown_mdl_options') return ale#Escape(l:executable) . l:exec_args - \ . (!empty(l:options) ? ' ' . l:options : '') + \ . ' -j' . (!empty(l:options) ? ' ' . l:options : '') endfunction function! ale_linters#markdown#mdl#Handle(buffer, lines) abort - " matches: '(stdin):173: MD004 Unordered list style' - let l:pattern = ':\(\d*\): \(.*\)$' let l:output = [] - for l:match in ale#util#GetMatches(a:lines, l:pattern) + for l:error in ale#util#FuzzyJSONDecode(a:lines, []) call add(l:output, { - \ 'lnum': l:match[1] + 0, - \ 'text': l:match[2], + \ 'lnum': l:error['line'], + \ 'code': l:error['rule'] . '/' . join(l:error['aliases'], '/'), + \ 'text': l:error['description'], \ 'type': 'W', \}) endfor |