Reports JSP import directives without a URI or tagdir attributes.

Example:


<html>
  <body>
    <%@ taglib prefix="html"%> // Error: either `uri` or `tagdir` attribute should be specified
    ...
  </body>
</html>