Word Count
Checks content length for thin content issues
Checks content length for thin content issues
| Rule ID | content/word-count |
| Category | Content |
| Scope | Per-page |
| Severity | warning |
| Weight | 4/10 |
Solution
Pages with thin content (under 300 words) often struggle to rank well and are actively deindexed by Google since the June 2025 core update. Add more valuable, relevant content to thin pages—aim for at least 500 words for standard pages and 1000+ for in-depth articles. If a page can’t be fleshed out, voluntarily noindex it or consolidate it into a more comprehensive resource. Trimming thin pages from your index is better than leaving low-value content for Google to penalize.
Options
This rule supports the following configuration options:
| Option | Type | Default | Description |
|---|---|---|---|
min_words | unknown | undefined | Minimum word count |
warn_threshold | unknown | undefined | Word count for optimal content |
Configuration Example
squirrel.toml
toml[rules."content/word-count"]
min_words = undefined
warn_threshold = undefinedEnable / Disable
Disable this rule
squirrel.toml
toml[rules]
disable = ["content/word-count"]Disable all Content rules
squirrel.toml
toml[rules]
disable = ["content/*"]Enable only this rule
squirrel.toml
toml[rules]
enable = ["content/word-count"]
disable = ["*"]