summaryrefslogtreecommitdiff
path: root/ale_linters/scss/stylelint.vim
blob: 2f5da7c90a0076fc2ed180d9031a64b973fffd99 (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
" Author: diartyz <diartyz@gmail.com>

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

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

function! ale_linters#scss#stylelint#GetExecutable(buffer) abort
    if g:ale_scss_stylelint_use_global
        return g:ale_scss_stylelint_executable
    endif

    return ale#util#ResolveLocalPath(
    \   a:buffer,
    \   'node_modules/.bin/stylelint',
    \   g:ale_scss_stylelint_executable
    \)
endfunction

function! ale_linters#scss#stylelint#GetCommand(buffer) abort
    return ale_linters#scss#stylelint#GetExecutable(a:buffer)
    \   . ' --stdin-filename %s'
endfunction

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