> Deprecated: > This check only exists in Theme Check `v1.X.X`. Reports deeply nested `render` tags or `include` tags. ## Examples The following examples contain code snippets that either fail or pass this check. ### ✗ Fail The following example includes a series of nested snippets: ```liquid {% render 'one' %} ``` ```liquid {% render 'two' %} ``` ```liquid {% render 'three' %} ``` ```liquid {% render 'four' %} ``` ``` ok ``` ### ✓ Pass The following example includes snippets with only two levels of nesting: ```liquid {% render 'one' %} ``` ```liquid {% render 'two' %} ``` ```liquid ok ``` ## Options ```yaml NestedSnippet: enabled: true max_nesting_level: 2 ``` | Parameter | Description | | --- | --- | | enabled | Whether this check is enabled. | | max_nesting_level | The maximum depth of snippets rendering snippets.| ## Disabling this check This check is safe to [disable](/docs/storefronts/themes/tools/theme-check/configuration).