summaryrefslogtreecommitdiff
path: root/ale_linters
diff options
context:
space:
mode:
authorw0rp <w0rp@users.noreply.github.com>2018-08-24 13:20:37 +0100
committerGitHub <noreply@github.com>2018-08-24 13:20:37 +0100
commitadc038f3271b9586e8d6a1e3dc3f2904816b2fff (patch)
treeea0040257398c127f63d9f9d26ce4f217ace49c7 /ale_linters
parentc4eca7c417945a684949342da8d0ab30e6c82b3a (diff)
parentc253fb72e3645f80d0a49b9a5194f3ecc7d6ced1 (diff)
downloadale-adc038f3271b9586e8d6a1e3dc3f2904816b2fff.zip
Merge pull request #1839 from filipekiss/feature/stylelint-inline-css
Add Stylelint as HTML Linter
Diffstat (limited to 'ale_linters')
-rw-r--r--ale_linters/html/stylelint.vim27
1 files changed, 27 insertions, 0 deletions
diff --git a/ale_linters/html/stylelint.vim b/ale_linters/html/stylelint.vim
new file mode 100644
index 00000000..908c4b02
--- /dev/null
+++ b/ale_linters/html/stylelint.vim
@@ -0,0 +1,27 @@
+" Author: Filipe Kiss <hello@filipekiss.com.br> http://github.com/filipekiss
+
+call ale#Set('html_stylelint_executable', 'stylelint')
+call ale#Set('html_stylelint_options', '')
+call ale#Set('html_stylelint_use_global', 0)
+
+function! ale_linters#html#stylelint#GetExecutable(buffer) abort
+ return ale#node#FindExecutable(a:buffer, 'html_stylelint', [
+ \ 'node_modules/.bin/stylelint',
+ \])
+endfunction
+
+function! ale_linters#html#stylelint#GetCommand(buffer) abort
+ let l:executable = ale_linters#html#stylelint#GetExecutable(a:buffer)
+ let l:options = ale#Var(a:buffer, 'html_stylelint_options')
+
+ return ale#Escape(l:executable)
+ \ . (!empty(l:options) ? ' ' . l:options : '')
+ \ . ' --stdin-filename %s'
+endfunction
+
+call ale#linter#Define('html', {
+\ 'name': 'stylelint',
+\ 'executable_callback': 'ale_linters#html#stylelint#GetExecutable',
+\ 'command_callback': 'ale_linters#html#stylelint#GetCommand',
+\ 'callback': 'ale#handlers#css#HandleStyleLintFormat',
+\})