10 lines
296 B
VimL
10 lines
296 B
VimL
" Author: w0rp <devw0rp@gmail.com>
|
|
" Description: This file adds support for checking CSS code with csslint.
|
|
|
|
call ale#linter#Define('css', {
|
|
\ 'name': 'csslint',
|
|
\ 'executable': 'csslint',
|
|
\ 'command': 'csslint --format=compact %t',
|
|
\ 'callback': 'ale#handlers#HandleCSSLintFormat',
|
|
\})
|