From df91bc904621fcd6e6bb1bd95ea3d4fbbad68f8b Mon Sep 17 00:00:00 2001 From: Leo Date: Sun, 1 Nov 2020 00:20:20 -0300 Subject: document support for apkbuild-lint and secfixes-check for apkbuild --- doc/ale-supported-languages-and-tools.txt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'doc') diff --git a/doc/ale-supported-languages-and-tools.txt b/doc/ale-supported-languages-and-tools.txt index a44ad75b..37191561 100644 --- a/doc/ale-supported-languages-and-tools.txt +++ b/doc/ale-supported-languages-and-tools.txt @@ -19,6 +19,9 @@ Notes: * `ansible-lint` * API Blueprint * `drafter` +* APKBUILD + * `apkbuild-lint` + * `secfixes-check` * AsciiDoc * `alex`!! * `languagetool`!! -- cgit v1.2.3 From 4f8f2a4a0c9ee2e6b5e836a59644ae3b7e54b74d Mon Sep 17 00:00:00 2001 From: Leo Date: Sun, 1 Nov 2020 01:12:44 -0300 Subject: Document new default linters for apkbuild --- doc/ale.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'doc') diff --git a/doc/ale.txt b/doc/ale.txt index d73987a9..a181d78a 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -1556,6 +1556,7 @@ g:ale_linters *g:ale_linters* following values: > { + \ 'apkbuild': ['apkbuild_lint', 'secfixes_check'], \ 'csh': ['shell'], \ 'elixir': ['credo', 'dialyxir', 'dogma'], \ 'go': ['gofmt', 'golint', 'go vet'], -- cgit v1.2.3 From d7ed80346c2cc9ddf9d72a075d5516d24708034a Mon Sep 17 00:00:00 2001 From: Leo Date: Sun, 1 Nov 2020 02:50:24 -0300 Subject: Add document for apkbuild filetype --- doc/ale-apkbuild.txt | 30 ++++++++++++++++++++++++++++++ doc/ale.txt | 3 +++ 2 files changed, 33 insertions(+) create mode 100644 doc/ale-apkbuild.txt (limited to 'doc') diff --git a/doc/ale-apkbuild.txt b/doc/ale-apkbuild.txt new file mode 100644 index 00000000..05261400 --- /dev/null +++ b/doc/ale-apkbuild.txt @@ -0,0 +1,30 @@ +=============================================================================== +ALE APKBUILD Integration *ale-apkbuild-options* + + +=============================================================================== +apkbuild-lint *ale-apkbuild-apkbuild-lint* + +g:ale_apkbuild_apkbuild_lint_executable + *g:ale_apkbuild_apkbuild_lint_executable* + *b:ale_apkbuild_apkbuild_lint_executable* + + Type: |String| + Default: `'apkbuild-lint'` + + This variable can be set to change the path to apkbuild-lint + +=============================================================================== +secfixes-check *ale-apkbuild-secfixes-check* + +g:ale_apkbuild_secfixes_check_executable + *g:ale_apkbuild_secfixes_check_executable* + *b:ale_apkbuild_secfixes_check_executable* + + Type: |String| + Default: `'secfixes-check'` + + This variable can be set to change the path to secfixes-check + +=============================================================================== + vim:tw=78:ts=2:sts=2:sw=2:ft=help:norl: diff --git a/doc/ale.txt b/doc/ale.txt index a181d78a..08b2f0e6 100644 --- a/doc/ale.txt +++ b/doc/ale.txt @@ -2599,6 +2599,9 @@ documented in additional help files. gnatpp................................|ale-ada-gnatpp| ansible.................................|ale-ansible-options| ansible-lint..........................|ale-ansible-ansible-lint| + apkbuild................................|ale-apkbuild-options| + apkbuild-lint.........................|ale-apkbuild-apkbuild-lint| + secfixes-check........................|ale-apkbuild-secfixes-check| asciidoc................................|ale-asciidoc-options| write-good............................|ale-asciidoc-write-good| textlint..............................|ale-asciidoc-textlint| -- cgit v1.2.3