Is there any way to integrate monaco editor with a jshint linting tool?
I know that monaco provides a possibility to set up compiler options, but they are not enough for me. For instance, I would like to require semicolons at the end of the statements but can't find a way to do that.
Ok, I have found one way, but I am still thinking if there is a better one.
Basically, I can run the JSHint analysis of my code manually.
And afterwards based on the results I can create my custom model markers. Something like:
And set model markers for my editor.
This works, although I still would like to customise the error markers, but maybe there is more natural way of doing it?