Class: ThemeCheck::MissingRequiredTemplateFiles

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

Overview

Reports missing shopify required theme files required templates: shopify.dev/tutorials/review-theme-store-requirements-files

Constant Summary collapse

REQUIRED_LIQUID_FILES =
%w(layout/theme)
REQUIRED_TEMPLATE_FILES =
%w(
index product collection cart blog article page list-collections search 404
gift_card customers/account customers/activate_account customers/addresses
customers/login customers/order customers/register customers/reset_password password
    )
.map { |file| "templates/#{file}" }

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, can_disable, #can_disable?, 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_endObject



20
21
22
23
24
25
26
27
# File 'lib/theme_check/checks/missing_required_template_files.rb', line 20

def on_end
  (REQUIRED_LIQUID_FILES - theme.liquid.map(&:name)).each do |file|
    add_offense("'#{file}.liquid' is missing")
  end
  (REQUIRED_TEMPLATE_FILES - (theme.liquid + theme.json).map(&:name)).each do |file|
    add_offense("'#{file}.liquid' or '#{file}.json' is missing")
  end
end