blob: 578792bf57dc11e9bdad7c09ce6cc11d7a529de7 (
plain)
1
2
3
4
5
6
7
8
9
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 --output-file=- %t',
\ 'callback': 'ale#handlers#unix#HandleAsWarning',
\})
|