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/scala/scalastyle.vim
5 call ale#linter#Reset()
7 Execute(The scalastyle handler should parse lines correctly):
12 \ 'text': 'Missing or badly formed ScalaDoc: Missing @param str',
18 \ 'text': 'There should be a space before the plus (+) sign',
24 \ 'text': 'There should be a space before the plus (+) sign',
28 \ ale_linters#scala#scalastyle#Handle(347, [
29 \ 'Starting scalastyle',
30 \ 'start file /home/test/Doop.scala',
31 \ 'warning file=/home/test/Doop.scala message=Missing or badly formed ScalaDoc: Missing @param str line=190',
32 \ 'error file=/home/test/Doop.scala message=There should be a space before the plus (+) sign line=200 column=33',
33 \ 'error file=/home/test/Doop.scala message=There should be a space before the plus (+) sign line=200 column=0',
34 \ 'end file /home/test/Doop.scala',
35 \ 'Processed 1 file(s)',
38 \ 'Finished in 934 ms',
41 Execute(The scalastyle linter should complain when there is no configuration file):
46 \ 'text': '(See :help ale-scala-scalastyle) No scalastyle configuration file was found.',
49 \ ale_linters#scala#scalastyle#Handle(347, [
51 \ 'Usage: scalastyle [options] <source directory>',
52 \ ' -c, --config FILE configuration file (required)',