Code Inspections in HTML
This topic lists all PhpStorm code inspections available in HTML.
You can toggle specific inspections or change their severity level on the Editor | Inspections page of the IDE settings Ctrl+Alt+S.
Accessibility
Inspection | Description | Default Severity |
---|---|---|
Reports a form element ( | Warning | |
Reports a missing | Warning | |
Reports a missing | Warning | |
Reports a missing | ||
Reports a missing title attribute | ||
Reports a missing | Warning |
Other inspections
Inspection | Description | Default Severity |
---|---|---|
Reports an empty tag (such as | Warning | |
Reports an HTML non-boolean attribute without a value. Suggests configuring attributes that should not be reported. | Warning | |
Reports invalid XML contents of a | Error | |
Reports a | Warning | |
Reports an HTML element without a closing tag. Some coding styles require that HTML elements have closing tags even where this is optional. Example:
<html>
<body>
<p>Behold!
</body>
</html>
After the quick-fix is applied:
<html>
<body>
<p>Behold!</p>
</body>
</html>
| No highlighting, only fix | |
Reports a missing mandatory attribute in an XML/HTML tag. Suggests configuring attributes that should not be reported. | Warning | |
Reports an obsolete HTML5 attribute. | Warning | |
Reports an obsolete HTML5 tag. Suggests replacing the obsolete tag with a CSS or another tag. | Warning | |
Reports a presentational HTML tag. Suggests replacing the presentational tag with a CSS or another tag. | ||
Reports a redundant closing tag for an empty element, for example,
<html>
<body>
<br></br>
</body>
</html>
After the quick-fix is applied:
<html>
<body>
<br>
</body>
</html>
| Warning | |
Reports an unknown HTML attribute. Suggests configuring attributes that should not be reported. | Warning | |
Reports an unknown HTML tag. Suggests configuring tags that should not be reported. | Warning | |
Reports an unresolved file in a link. | Warning | |
Reports an unresolved last part of an URL after the | Warning | |
Reports an unresolved web link. Works by making network requests in the background. |