blob: 39176ce30d014eaaa55a4f8fdcc1091f2d07ffc4 (
plain)
1
2
3
4
5
6
7
8
9
|
" 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',
\})
|