mirror of
https://github.com/dense-analysis/ale
synced 2024-12-25 23:52:22 +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
22 lines
426 B
Plaintext
22 lines
426 B
Plaintext
Before:
|
|
runtime ale_linters/make/checkmake.vim
|
|
|
|
After:
|
|
call ale#linter#Reset()
|
|
|
|
Execute(Parsing checkmake errors should work):
|
|
AssertEqual
|
|
\ [
|
|
\ {
|
|
\ 'bufnr': 42,
|
|
\ 'lnum': 1,
|
|
\ 'type': 'E',
|
|
\ 'code': 'woops',
|
|
\ 'text': 'an error has occurred',
|
|
\ }
|
|
\ ],
|
|
\ ale_linters#make#checkmake#Handle(42, [
|
|
\ "This shouldn't match",
|
|
\ '1:woops:an error has occurred',
|
|
\ ])
|