id | title |
---|---|
require-meta-description |
@html-eslint/require-meta-description |
Examples of incorrect code for this rule:
<html>
<head>
<meta name="author" content="YeonJuAn" />
</head>
</html>
Examples of correct code for this rule:
<html>
<head>
<meta name="description" content="ESLint plugin for HTML" />
<meta name="author" content="YeonJuAn" />
</head>
</html>