💼 This rule is enabled in the following configs: strict-gjs, strict-gts.
💼 This rule is enabled in the following configs: strict-gjs, strict-gts.
Disallow invalid meta tags.
Meta tags should use proper encoding (UTF-8) for consistent cross-browser behavior and internationalization support.
This rule enforces that meta charset tags use UTF-8 encoding.
<template>
<meta charset="iso-8859-1" />
</template><template>
<meta charset="latin1" />
</template><template>
<meta charset="windows-1252" />
</template><template>
<meta charset="utf-8" />
</template><template>
<meta charset="UTF-8" />
</template><template>
<meta name="viewport" content="width=device-width, initial-scale=1" />
</template>