summaryrefslogtreecommitdiff
path: root/ale_linters/css/stylelint.vim
blob: a16dfde2aab1a7f2755204eee715d3cb7e5df8c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
" Author: diartyz <diartyz@gmail.com>

call ale#Set('css_stylelint_executable', 'stylelint')
call ale#Set('css_stylelint_options', '')
call ale#Set('css_stylelint_use_global', get(g:, 'ale_use_global_executables', 0))

function! ale_linters#css#stylelint#GetExecutable(buffer) abort
    return ale#node#FindExecutable(a:buffer, 'css_stylelint', [
    \   'node_modules/.bin/stylelint',
    \])
endfunction

function! ale_linters#css#stylelint#GetCommand(buffer) abort
    return ale_linters#css#stylelint#GetExecutable(a:buffer)
    \   . ' ' . ale#Var(a:buffer, 'css_stylelint_options')
    \   . ' --stdin-filename %s'
endfunction

call ale#linter#Define('css', {
\   'name': 'stylelint',
\   'executable_callback': 'ale_linters#css#stylelint#GetExecutable',
\   'command_callback': 'ale_linters#css#stylelint#GetCommand',
\   'callback': 'ale#handlers#css#HandleStyleLintFormat',
\})