I would like to have the linter panel always shown and remove the ability for it to be hidden (as well as make a few straightforward tweaks like changing the message shown when there are no diagnostics).
I’m guessing the best way for me to do this is to make my own copy of lint.ts and change things there. In terms of preventing the panel from being hidden, my strategy is to remove the calls to closeLintPanel
and delete the code in the LintPanel
class setting up the now-superfluous close button.
However I’m not sure how to have the panel be shown when the editor is created. I assume I need to insert a call to openLintPanel
(well, a copy of that function without the line that focuses the panel) somewhere, but I’m not sure where.
Any guidance would be appreciated. Thank you!