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/java/checkstyle.vim
5 call ale#linter#Reset()
7 Execute(The checkstyle handler should parse lines correctly):
13 \ 'text': '''method def rcurly'' has incorrect indentation level 4, expected level should be 2.',
14 \ 'code': 'Indentation',
16 \ 'sub_type': 'style',
21 \ 'text': 'Missing a Javadoc comment.',
22 \ 'code': 'JavadocMethod',
24 \ 'sub_type': 'style',
29 \ 'text': 'WhitespaceAround: ''if'' is not followed by whitespace.',
30 \ 'code': 'WhitespaceAround',
32 \ 'sub_type': 'style',
35 \ ale_linters#java#checkstyle#Handle(666, [
36 \ '[WARN] whatever:101: ''method def rcurly'' has incorrect indentation level 4, expected level should be 2. [Indentation]',
37 \ '[WARN] whatever:63:3: Missing a Javadoc comment. [JavadocMethod]',
38 \ '[WARN] whatever:11:7: WhitespaceAround: ''if'' is not followed by whitespace. [WhitespaceAround]',
41 Execute(The checkstyle handler should parse lines from older checkstyle versions correctly):
46 \ 'text': '''method def modifier'' have incorrect indentation level 4, expected level should be 2.',
48 \ 'sub_type': 'style',
51 \ ale_linters#java#checkstyle#Handle(666, [
52 \ '/home/languitar/src/rsb-java/rsb-java/src/main/java/rsb/Listener.java:289: warning: ''method def modifier'' have incorrect indentation level 4, expected level should be 2.',