Right now, the unmake command prints findings in three different ways:
<SEVERITY>: <FILE>: <LINE>:<COLUMN>: <MESSAGE>
<SEVERITY>: <FILE>: <LINE>: <MESSAGE>
<SEVERITY>: <FILE>: <MESSAGE>
This makes it hard to parse using regular expressions. This is particularly helpful for integrating unmake with text editors like Neovim.
Ideally the output should either always contain the line and column numbers, or at least provide a different format, like JSON.
Right now, the
unmakecommand prints findings in three different ways:<SEVERITY>: <FILE>: <LINE>:<COLUMN>: <MESSAGE><SEVERITY>: <FILE>: <LINE>: <MESSAGE><SEVERITY>: <FILE>: <MESSAGE>This makes it hard to parse using regular expressions. This is particularly helpful for integrating
unmakewith text editors like Neovim.Ideally the output should either always contain the line and column numbers, or at least provide a different format, like JSON.