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/thrift/thrift.vim
5 call ale#linter#Reset()
7 Execute(The thrift handler should handle basic warnings and errors):
14 \ 'text': 'The "byte" type is a compatibility alias for "i8". Use i8" to emphasize the signedness of this type.',
20 \ 'text': 'Could not find include file include.thrift',
26 \ 'text': 'Enum FOO is already defined!',
29 \ ale_linters#thrift#thrift#Handle(1, [
30 \ '[WARNING:/path/filename.thrift:17] The "byte" type is a compatibility alias for "i8". Use i8" to emphasize the signedness of this type.',
31 \ '[WARNING:/path/filename.thrift:20] Could not find include file include.thrift',
32 \ '[FAILURE:/path/filename.thrift:83] Enum FOO is already defined!',
35 Execute(The thrift handler should handle multiline errors):
42 \ 'text': 'This integer is too big: "11111111114213213453243"',
48 \ 'text': 'Implicit field keys are deprecated and not allowed with -strict',
54 \ 'text': "Unknown error (last token was ';')",
57 \ ale_linters#thrift#thrift#Handle(1, [
58 \ "[ERROR:/path/filename.thrift:75] (last token was '11111111114213213453243')",
59 \ 'This integer is too big: "11111111114213213453243"',
60 \ "[ERROR:/path/filename.thrift:76] (last token was ';')",
61 \ 'Implicit field keys are deprecated and not allowed with -strict',
62 \ "[ERROR:/path/filename.thrift:77] (last token was ';')",