e149692cc9
subrepo: subdir: "dotfiles/.vim/plugged/ale" merged: "e4b205440" upstream: origin: "https://github.com/dense-analysis/ale.git" branch: "master" commit: "e4b205440" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
12 lines
417 B
VimL
12 lines
417 B
VimL
" Author: Leo <thinkabit.ukim@gmail.com>
|
|
" Description: apkbuild-lint from atools linter for APKBUILDs
|
|
|
|
call ale#Set('apkbuild_apkbuild_lint_executable', 'apkbuild-lint')
|
|
|
|
call ale#linter#Define('apkbuild', {
|
|
\ 'name': 'apkbuild_lint',
|
|
\ 'output_stream': 'stdout',
|
|
\ 'executable': {b -> ale#Var(b, 'apkbuild_apkbuild_lint_executable')},
|
|
\ 'command': '%e %t',
|
|
\ 'callback': 'ale#handlers#atools#Handle',
|
|
\})
|