This repository has been archived on 2024-07-19. You can view files and clone it, but cannot push or open issues or pull requests.
ale/ale_linters/css/csslint.vim

9 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',
\})