I want to create a (ST3) linter for my own XML based dialect.
What I have so far: an application that listens on a network socket which I use to send my buffer and get back a text with an error message and line/column indicating where the error is.
/path/to/file.xml:5:12: error message
Now I would like to show this to the user in a nice way such as on this page: http://www.sublimelinter.com/en/stable/
I’ve thought about using the instructions for sublimelinter to create a new package but this explains only how to use command line based linters, and I don’t have such a linter.
Is there a way to give sublimelinter (or a similar package) this information I’ve got so it can display it in a nicely fashion?