URL: /rules/eeat/terms-of-service

---
title: "Terms of Service"
description: "Checks for terms of service page"
---

Checks for terms of service page

| | |
|---|---|
| **Rule ID** | `eeat/terms-of-service` |
| **Category** | [E-E-A-T](/rules/eeat) |
| **Scope** | Site-wide |
| **Severity** | info |
| **Weight** | 3/10 |

## Solution

Terms of Service (ToS) define the rules for using your site/service. Essential for: e-commerce, SaaS, membership sites. Include: user responsibilities, intellectual property, disclaimers, dispute resolution. Link from footer. Keep updated when practices change. For simple content sites, may be optional but still recommended.

## Enable / Disable

### Disable this rule

```toml squirrel.toml
[rules]
disable = ["eeat/terms-of-service"]
```

### Disable all E-E-A-T rules

```toml squirrel.toml
[rules]
disable = ["eeat/*"]
```

### Enable only this rule

```toml squirrel.toml
[rules]
enable = ["eeat/terms-of-service"]
disable = ["*"]
```
