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

call ale#Set('scss_stylelint_executable', 'stylelint')
call ale#Set('scss_stylelint_use_global', 0)

function! ale_linters#scss#stylelint#GetExecutable(buffer) abort
    return ale#node#FindExecutable(a:buffer, 'scss_stylelint', [
    \   'node_modules/.bin/stylelint',
    \])
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#css#HandleStyleLintFormat',
\})