Class: ThemeCheck::MissingTemplate

Inherits:
LiquidCheck show all
Defined in:
lib/theme_check/checks/missing_template.rb

Overview

Reports missing include/render/section template

Constant Summary

Constants inherited from Check

Check::CATEGORIES, Check::SEVERITIES

Instance Attribute Summary

Attributes inherited from Check

#offenses, #options, #theme

Instance Method Summary collapse

Methods inherited from LiquidCheck

#add_offense

Methods included from ChecksTracking

#inherited

Methods included from ParsingHelpers

#outside_of_strings

Methods inherited from Check

all, category, #category, #code_name, doc, #doc, #ignore!, #ignored?, severity, #severity, #to_s, #unignore!

Methods included from JsonHelpers

#format_json_parse_error

Instance Method Details

#on_include(node) ⇒ Object Also known as: on_render



8
9
10
11
12
13
14
15
# File 'lib/theme_check/checks/missing_template.rb', line 8

def on_include(node)
  template = node.value.template_name_expr
  if template.is_a?(String)
    unless theme["snippets/#{template}"]
      add_offense("'snippets/#{template}.liquid' is not found", node: node)
    end
  end
end

#on_section(node) ⇒ Object



18
19
20
21
22
23
# File 'lib/theme_check/checks/missing_template.rb', line 18

def on_section(node)
  template = node.value.section_name
  unless theme["sections/#{template}"]
    add_offense("'sections/#{template}.liquid' is not found", node: node)
  end
end