Add support for actionlint options (#4216)

* Add support for actionlint options

* fix misaligned doc tags
This commit is contained in:
Isman Firmansyah
2022-05-29 20:23:47 +07:00
committed by GitHub
parent ae44f05600
commit 876140832c
4 changed files with 43 additions and 1 deletions

View File

@@ -32,6 +32,20 @@ g:ale_yaml_actionlint_executable *g:ale_yaml_actionlint_executable*
This variable can be set to change the path to actionlint.
g:ale_yaml_actionlint_options *g:ale_yaml_actionlint_options*
*b:ale_yaml_actionlint_options*
Type: |String|
Default: `''`
This variable can be set to add extra options to actionlint executable.
For example, to disable running `shellcheck` and `pyflakes` external commands,
you may want to set:
>
let g:ale_yaml_actionlint_options = '-shellcheck= -pyflakes='
<
Please note that passing `-format` as option is not supported at the moment.
===============================================================================
circleci *ale-yaml-circleci*