add po support with proselint, writegood, msgfmt and alex

This commit is contained in:
butlerx
2018-01-27 11:40:40 +00:00
parent dffc162dd6
commit 9dad25778f
7 changed files with 55 additions and 0 deletions

10
ale_linters/po/msgfmt.vim Normal file
View File

@@ -0,0 +1,10 @@
" Author: Cian Butler https://github.com/butlerx
" Description: msgfmt for PO files
call ale#linter#Define('po', {
\ 'name': 'msgfmt',
\ 'executable': 'msgfmt',
\ 'output_stream': 'stderr',
\ 'command': 'msgfmt --statistics %t',
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
\})