Sha256: 839a3e2bc547bf5167382b14504b015266a62ebb01546351e11e791528162bde
Contents?: true
Size: 844 Bytes
Versions: 18
Compression:
Stored size: 844 Bytes
Contents
# Prevent missing templates (`MissingTemplate`) This check exists to prevent rendering resources with the `render` tag, `section` tag (and the deprecated `include` tag) that do not exist. ## Check Details This check is aimed at preventing liquid rendering errors. :-1: Example of **incorrect** code for this check: ```liquid {% render 'snippet-that-does-not-exist' %} ``` :+1: Example of **correct** code for this check: ```liquid {% render 'article-card' %} ``` ## Check Options The default configuration for this check is the following: ```yaml MissingTemplate: enabled: true ``` ## Version This check has been introduced in Theme Check 0.1.0. ## Resources - [Rule Source][codesource] - [Documentation Source][docsource] [codesource]: /lib/theme_check/checks/missing_template.rb [docsource]: /docs/checks/missing_template.md
Version data entries
18 entries across 18 versions & 1 rubygems