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 autoload/ale/handlers/atools.vim
5 call ale#linter#Reset()
7 Execute(The atools handler should handle basic errors or warings):
12 \ 'text': 'trailing whitespace',
18 \ 'text': '$pkgname should not be used in the source url',
23 \ ale#handlers#atools#Handle(bufnr(''), [
24 \ 'IC:[AL8]:APKBUILD:2:trailing whitespace',
25 \ 'MC:[AL29]:APKBUILD:15:$pkgname should not be used in the source url',
28 " Regardless of the severity, if the certainty is [P]ossible and not [C]ertain
29 " or if regardless of the Certainty the Severity is not [I]mportant or [S]erious
30 " then it must be a [W]arning
31 Execute(If we are not Certain or Importantly Serious, be a Warning):
36 \ 'text': 'This violation is Serious but Possible false positive, I am a Warning!',
42 \ 'text': 'This violation is Important but Possible false positive, I am a Warning!',
48 \ 'text': 'This violation is Minor, I am a Warning!',
54 \ 'text': 'This violation is Style, I am a Warning!',
59 \ ale#handlers#atools#Handle(bufnr(''), [
60 \ 'SP:[AL]:APKBUILD:3:This violation is Serious but Possible false positive, I am a Warning!',
61 \ 'IP:[AL]:APKBUILD:4:This violation is Important but Possible false positive, I am a Warning!',
62 \ 'MC:[AL]:APKBUILD:5:This violation is Minor, I am a Warning!',
63 \ 'TC:[AL]:APKBUILD:6:This violation is Style, I am a Warning!',
66 Execute(We should be error if we are Certain it is Serious or Important):
71 \ 'text': 'This is Certainly Serious, I am an Error!',
77 \ 'text': 'This is Certainly Important, I am an Error!',
82 \ ale#handlers#atools#Handle(bufnr(''), [
83 \ 'SC:[AL]:APKBUILD:7:This is Certainly Serious, I am an Error!',
84 \ 'IC:[AL]:APKBUILD:8:This is Certainly Important, I am an Error!',