mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
* 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
30 lines
614 B
Plaintext
30 lines
614 B
Plaintext
Before:
|
|
runtime ale_linters/elixir/dogma.vim
|
|
|
|
After:
|
|
call ale#linter#Reset()
|
|
|
|
Execute(The dogma handler should parse lines correctly):
|
|
AssertEqual
|
|
\ [
|
|
\ {
|
|
\ 'bufnr': 347,
|
|
\ 'lnum': 18,
|
|
\ 'col': 5,
|
|
\ 'text': 'Some error',
|
|
\ 'type': 'E',
|
|
\ },
|
|
\ {
|
|
\ 'bufnr': 347,
|
|
\ 'lnum': 19,
|
|
\ 'col': 7,
|
|
\ 'text': 'Some warning',
|
|
\ 'type': 'W',
|
|
\ },
|
|
\ ],
|
|
\ ale_linters#elixir#dogma#Handle(347, [
|
|
\ 'This line should be ignored completely',
|
|
\ 'lib/filename.ex:18:5: C: Some error',
|
|
\ 'lib/filename.ex:19:7: R: Some warning',
|
|
\ ])
|