@html-eslint/require-meta-charset
<meta charset="...">
in the <head></head>
.
Enforce to use Rule Details
Examples of incorrect code for this rule:
<html>
<head>
</head>
</html>
Examples of correct code for this rule:
<html>
<head>
<meta charset="UTF-8">
</head>
</html>