This check exists to inform the user of Liquid syntax error earlier.
This check is aimed at eliminating syntax errors.
👎 Examples of incorrect code for this check:
{% include 'muffin'
{% assign foo = 1 }}
{% unknown %}
{% if collection | size > 0 %}
👍 Examples of correct code for this check:
{% include 'muffin' %}
{% assign foo = 1 %}
{% if collection.size > 0 %}
The default configuration for this check is the following:
SyntaxError:
enabled: true
It is not safe to disable this rule.
This check has been introduced in Theme Check 0.1.0.