This check exists to prevent invalid JSON in {% schema %}
tags.
This check is aimed at eliminating JSON errors in schema tags.
👎 Examples of incorrect code for this check:
{% schema %}
{
"comma": "trailing",
}
{% endschema %}
👍 Examples of correct code for this check:
{
"comma": "not trailing"
}
The default configuration for this check is the following:
ValidSchema:
enabled: true
It is not safe to disable this check.
This check has been introduced in Theme Check 0.1.0.