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/joker.vim
5 call ale#linter#Reset()
7 Execute(the clojure joker handler should be able to handle errors):
14 \ 'text': 'Read error: Unexpected )',
17 \ ale_linters#clojure#joker#HandleJokerFormat(0, [
18 \ 'test.clj:123:44: Read error: Unexpected )',
21 Execute(the clojure joker handler should be able to handle warnings):
28 \ 'text': 'Parse warning: let form with empty body',
31 \ ale_linters#clojure#joker#HandleJokerFormat(0, [
32 \ 'test.clj:654:321: Parse warning: let form with empty body'
35 Execute(the clojure joker handler should be able to handle exceptions):
42 \ 'text': 'Exception: something horrible happen',
45 \ ale_linters#clojure#joker#HandleJokerFormat(0, [
46 \ 'test.clj:123:321: Exception: something horrible happen'
49 Execute(the clojure joker handler should be able to handle errors from stdin):
56 \ 'text': 'Read error: Unexpected )',
59 \ ale_linters#clojure#joker#HandleJokerFormat(0, [
60 \ '<stdin>:16:1: Read error: Unexpected )',
63 Execute(the clojure joker handler should be able to handle windows files):
70 \ 'text': 'Read error: Unexpected )',
73 \ ale_linters#clojure#joker#HandleJokerFormat(0, [
74 \ 'C:\my\operating\system\is\silly\core.clj:123:44: Read error: Unexpected )',