summaryrefslogtreecommitdiff
path: root/ale_linters/css
diff options
context:
space:
mode:
Diffstat (limited to 'ale_linters/css')
-rw-r--r--ale_linters/css/stylelint.vim8
1 files changed, 8 insertions, 0 deletions
diff --git a/ale_linters/css/stylelint.vim b/ale_linters/css/stylelint.vim
new file mode 100644
index 00000000..8d656651
--- /dev/null
+++ b/ale_linters/css/stylelint.vim
@@ -0,0 +1,8 @@
+" Author: diartyz <diartyz@gmail.com>
+
+call ale#linter#Define('css', {
+\ 'name': 'stylelint',
+\ 'executable': 'stylelint',
+\ 'command': g:ale#util#stdin_wrapper . ' .css stylelint',
+\ 'callback': 'ale#handlers#HandleStyleLintFormat',
+\})