18508f7453
* proselint: Add more suported filetypes * proselint: Minor consistency fixes * Vim help: Disable linters by default
10 lines
278 B
VimL
10 lines
278 B
VimL
" Author: Daniel M. Capella https://github.com/polyzen
|
|
" Description: proselint for HTML files
|
|
|
|
call ale#linter#Define('html', {
|
|
\ 'name': 'proselint',
|
|
\ 'executable': 'proselint',
|
|
\ 'command': 'proselint %t',
|
|
\ 'callback': 'ale#handlers#HandleUnixFormatAsWarning',
|
|
\})
|