LiquidFreeSettings
Ensures that themes aren't using the {% liquid %} tag within Settings values. Settings values can't contain Liquid logic.
Anchor to ExamplesExamples
The following examples contain code snippets that either fail or pass this check.
Anchor to ✗ Fail✗ Fail
In the following example, the {% liquid %} tag is used within a Settings value:
{% schema %}
{
"name": "Section name",
"settings": [
{
"id": "input_with_logic",
"type": "text",
"label": "Input with Logic",
"default": "Hello {% if user %} User {% endif %}!"
}
]
}
{% endschema %}
Anchor to ✓ Pass✓ Pass
In the following example, the {% liquid %} tag isn't used within a Settings value:
{% schema %}
{
"name": "Section name",
"settings": [
{
"id": "input_with_logic",
"type": "text",
"label": "Input with Logic",
"default": "Hello User!"
}
]
}
{% endschema %}
Anchor to OptionsOptions
The following example contains the default configuration for this check:
LiquidFreeSettings
enabledtrue
severitywarning
| Parameter | Description |
|---|---|
enabled | Whether this check is enabled. |
severity | The severity of the check. |
Anchor to Disabling this checkDisabling this check
Disabling this check isn't recommended.
Was this page helpful?