fix-proselint (#5074)

This commit is contained in:
PsickOSSH
2026-01-25 08:29:03 +01:00
committed by GitHub
parent c0dd8167a6
commit d59cb7b3c2
17 changed files with 129 additions and 31 deletions

View File

@@ -1,9 +1,11 @@
" Author: Daniel M. Capella https://github.com/polyzen
" Description: proselint for HTML files
call ale#Set('proselint_executable', 'proselint')
call ale#linter#Define('html', {
\ 'name': 'proselint',
\ 'executable': 'proselint',
\ 'command': 'proselint %t',
\ 'executable': function('ale#proselint#GetExecutable'),
\ 'command': function('ale#proselint#GetCommandWithVersionCheck'),
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
\})