Ensures that objects are [paginated](/docs/api/liquid/tags/paginate) with performant sizes so that too many objects aren't loaded at once. This helps to keep response times low. ## Examples The following examples contain code snippets that either fail or pass this check. ### ✗ Fail The following example includes a pagination size that leads to too many products on a single page, exceeding the [`max_size`](#options) value: ```liquid {% paginate collection.products by 999 %} ``` ### ✓ Pass The following example includes a pagination size that will not negatively impact performance: ```liquid {% paginate collection.products by 12 %} ``` ## Options ```yaml PaginationSize: enabled: true min_size: 1 max_size: 50 ``` | Parameter | Description | | --- | --- | | `enabled` | Whether this check is enabled. | | `min_size` | The minimum valid pagination size.| | `max_size` | The maximum valid pagination size.| ## Disabling this check This check is safe to [disable](/docs/storefronts/themes/tools/theme-check/configuration).