I'm working on a mixed language integration project involving copious amounts of Bash. We use Eclipse as our IDE due to its tight integration with our SCM (not Git).
I have successfully configured a builder to run shellcheck against bash code and the output goes to the console view on run. Shellcheck can output in a variety of styles including checkstyle xml, and gcc but I'd like Eclipse to suck that output back in and do clever stuff with it - highlighting problem lines, allowing me to click on the error and jump to the relevant line etc.
I can't find a shellcheck plugin for Eclipse, but I'm wondering whether it is possible to integrate shellcheck with Eclipse via an intermediate plugin which leverages shellchecks ability to output gcc or checkstyle format messages. Has anyone come across a plugin which can do this?
I've come across terms such as markers etc but I don't have the experience to start writing an Eclipse plugin of my own (unless someone can point me to a comprehensive, well commented, sample plugin)...