mirror of
https://github.com/dense-analysis/ale.git
synced 2025-12-06 12:44:23 +08:00
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',
|
|
\})
|