diff options
author | Horacio Sanson <horacio@allm.net> | 2019-10-27 00:16:23 +0900 |
---|---|---|
committer | Horacio Sanson <horacio@allm.inc> | 2021-01-22 23:17:38 +0900 |
commit | 014b00d4d778bbfe027e927183b44ce3424679b4 (patch) | |
tree | f1d79c2874f3fe6b4f5c31fdd10c2eb8716f7077 /ale_linters/openapi | |
parent | 03eae9e085f6020a017ecbe761cccac9a5a89d77 (diff) | |
download | ale-014b00d4d778bbfe027e927183b44ce3424679b4.zip |
Add yamllint and prettier to openapi.
This commit enables yamllint and prettier on openapi files.
Diffstat (limited to 'ale_linters/openapi')
-rw-r--r-- | ale_linters/openapi/yamllint.vim | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/ale_linters/openapi/yamllint.vim b/ale_linters/openapi/yamllint.vim new file mode 100644 index 00000000..2b8952cc --- /dev/null +++ b/ale_linters/openapi/yamllint.vim @@ -0,0 +1,9 @@ +call ale#Set('yaml_yamllint_executable', 'yamllint') +call ale#Set('yaml_yamllint_options', '') + +call ale#linter#Define('openapi', { +\ 'name': 'yamllint', +\ 'executable': {b -> ale#Var(b, 'yaml_yamllint_executable')}, +\ 'command': function('ale#handlers#yamllint#GetCommand'), +\ 'callback': 'ale#handlers#yamllint#Handle', +\}) |