All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
2 runtime ale_linters/clojure/clj_kondo.vim
5 call ale#linter#Reset()
7 Execute(the clojure clj-kondo handler should be able to handle errors):
14 \ 'text': 'error: Unexpected )',
17 \ ale_linters#clojure#clj_kondo#HandleCljKondoFormat(0, [
18 \ 'test.clj:123:44: error: Unexpected )',
21 Execute(the clojure clj-kondo handler should be able to handle warnings):
28 \ 'text': 'warning: inline def',
31 \ ale_linters#clojure#clj_kondo#HandleCljKondoFormat(0, [
32 \ 'test.clj:654:321: warning: inline def'
35 Execute(the clojure clj-kondo handler should be able to handle exceptions):
42 \ 'text': 'Exception: something horrible happen',
45 \ ale_linters#clojure#clj_kondo#HandleCljKondoFormat(0, [
46 \ 'test.clj:123:321: Exception: something horrible happen'
49 Execute(the clojure clj-kondo handler should be able to handle errors from stdin):
56 \ 'text': 'error: Unexpected )',
59 \ ale_linters#clojure#clj_kondo#HandleCljKondoFormat(0, [
60 \ '<stdin>:16:1: error: Unexpected )',
63 Execute(the clojure clj-kondo handler should be able to handle windows files):
70 \ 'text': 'error: Unexpected )',
73 \ ale_linters#clojure#clj_kondo#HandleCljKondoFormat(0, [
74 \ 'C:\my\operating\system\is\silly\core.clj:123:44: error: Unexpected )',
77 Execute(the clojure clj-kondo handler should be able to lines without row/col):
84 \ 'text': 'error: Unexpected )',
87 \ ale_linters#clojure#clj_kondo#HandleCljKondoFormat(0, [
88 \ 'test.clj::: error: Unexpected )',