aboutsummaryrefslogtreecommitdiff
path: root/.vim/autoload/neomake/makers/ft/stylus.vim
diff options
context:
space:
mode:
Diffstat (limited to '.vim/autoload/neomake/makers/ft/stylus.vim')
-rw-r--r--.vim/autoload/neomake/makers/ft/stylus.vim16
1 files changed, 16 insertions, 0 deletions
diff --git a/.vim/autoload/neomake/makers/ft/stylus.vim b/.vim/autoload/neomake/makers/ft/stylus.vim
new file mode 100644
index 0000000..113a194
--- /dev/null
+++ b/.vim/autoload/neomake/makers/ft/stylus.vim
@@ -0,0 +1,16 @@
+" vim: ts=4 sw=4 et
+
+function! neomake#makers#ft#stylus#EnabledMakers() abort
+ return ['stylint']
+endfunction
+
+function! neomake#makers#ft#stylus#stylint() abort
+ return {
+ \ 'errorformat':
+ \ '%WWarning: %m,' .
+ \ '%EError: %m,' .
+ \ '%-Csee file: %f for the original selector,' .
+ \ '%CFile: %f,' .
+ \ '%ZLine: %l:%.%#'
+ \ }
+endfunction