c820089c44
`fecs` is a lint tool for HTML/CSS/JavaScript, see http://fecs.baidu.com for more options.
13 lines
414 B
VimL
13 lines
414 B
VimL
" Author: harttle <yangjvn@126.com>
|
|
" Description: fecs for CSS files
|
|
|
|
call ale#Set('css_fecs_executable', 'fecs')
|
|
call ale#Set('css_fecs_use_global', get(g:, 'ale_use_global_executables', 0))
|
|
|
|
call ale#linter#Define('css', {
|
|
\ 'name': 'fecs',
|
|
\ 'executable': function('ale#handlers#fecs#GetExecutable'),
|
|
\ 'command': function('ale#handlers#fecs#GetCommand'),
|
|
\ 'callback': 'ale#handlers#fecs#Handle',
|
|
\})
|