meta-charset-require
A <meta charset="">
must be present in <head>
tag.
Level: Error
Config value
Section titled “Config value”true
: enable rulefalse
: disable rule
The following patterns are not considered rule violations
Section titled “The following patterns are not considered rule violations”<html><head><meta charset="utf-8"></head></html>
The following patterns are considered rule violations
Section titled “The following patterns are considered rule violations”<!-- Missing meta charset --><html><head></head></html>
<!-- Empty meta charset value --><html><head><meta charset=""></head></html>
<!-- Whitespace-only meta charset value --><html><head><meta charset=" "></head></html>