summaryrefslogtreecommitdiff
path: root/ale_linters/css/stylelint.vim
blob: ffda0498cb18d4f1eb3354b120cf43ae6c16f99e (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
25
26
27
28
29
30
31
32
33
34
35
" Author: diartyz <diartyz@gmail.com>

let g:ale_css_stylelint_executable =
\   get(g:, 'ale_css_stylelint_executable', 'stylelint')

let g:ale_css_stylelint_options =
\   get(g:, 'ale_css_stylelint_options', '')

let g:ale_css_stylelint_use_global =
\   get(g:, 'ale_css_stylelint_use_global', 0)

function! ale_linters#css#stylelint#GetExecutable(buffer) abort
    if ale#Var(a:buffer, 'css_stylelint_use_global')
        return ale#Var(a:buffer, 'css_stylelint_executable')
    endif

    return ale#util#ResolveLocalPath(
    \   a:buffer,
    \   'node_modules/.bin/stylelint',
    \   ale#Var(a:buffer, 'css_stylelint_executable')
    \)
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#HandleStyleLintFormat',
\})