aboutsummaryrefslogtreecommitdiff
path: root/dotfiles/.vim/autoload/neomake/makers/ft/yaml.vim
diff options
context:
space:
mode:
Diffstat (limited to 'dotfiles/.vim/autoload/neomake/makers/ft/yaml.vim')
-rw-r--r--dotfiles/.vim/autoload/neomake/makers/ft/yaml.vim12
1 files changed, 12 insertions, 0 deletions
diff --git a/dotfiles/.vim/autoload/neomake/makers/ft/yaml.vim b/dotfiles/.vim/autoload/neomake/makers/ft/yaml.vim
new file mode 100644
index 0000000..338ca8c
--- /dev/null
+++ b/dotfiles/.vim/autoload/neomake/makers/ft/yaml.vim
@@ -0,0 +1,12 @@
+" vim: ts=4 sw=4 et
+
+function! neomake#makers#ft#yaml#EnabledMakers() abort
+ return ['yamllint']
+endfunction
+
+function! neomake#makers#ft#yaml#yamllint() abort
+ return {
+ \ 'args': ['-f', 'parsable'],
+ \ 'errorformat': '%E%f:%l:%c: [error] %m,%W%f:%l:%c: [warning] %m',
+ \ }
+endfunction