Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.squirrelscan.com/llms.txt

Use this file to discover all available pages before exploring further.

Checks for proper character encoding declaration
Rule IDcore/charset
CategoryCore SEO
ScopePer-page
Severitywarning
Weight5/10

Solution

Add <meta charset="UTF-8"> as the first element in your <head> section. This tells browsers how to interpret the text on your page. UTF-8 is the standard encoding that supports all languages and special characters. Placing it first ensures browsers know the encoding before parsing any other content.

Enable / Disable

Disable this rule

squirrel.toml
[rules]
disable = ["core/charset"]

Disable all Core SEO rules

squirrel.toml
[rules]
disable = ["core/*"]

Enable only this rule

squirrel.toml
[rules]
enable = ["core/charset"]
disable = ["*"]