I'm using SublimeText 2 and SublimeLinter, and I develop for Zope and Plone. In the page templates (.pt) I get lots of errors for namespace problems, which I would like to either fix or have SublimeLinter ignore.
For example:
<p tal:replace="structure some_content">Content</p>
...throws the following SublimeLinter error:
Namespace error: Namespace prefix tal for replace on p is not defined
I would like to ignore (or fix!) these, since there's a lot of TAL in page templates, and showing errors for each statement isn't helpful.
So the question essentially is, how do I tell SublimeLinter to ignore Namespace Errors, or am I missing something from my page template to include the namespace?