Sha256: c06a83508a24267d916c791389d96c25c49c923e0d03b705d8798c847de7a5d6
Contents?: true
Size: 938 Bytes
Versions: 2
Compression:
Stored size: 938 Bytes
Contents
# frozen_string_literal: true require "set" module ThemeCheck class UnusedSnippet < LiquidCheck severity :suggestion category :liquid doc docs_url(__FILE__) def initialize @used_templates = Set.new end def on_include(node) if node.value.template_name_expr.is_a?(String) @used_templates << "snippets/#{node.value.template_name_expr}" else # Can't reliably track unused snippets if an expression is used, ignore this check @used_templates.clear ignore! end end alias_method :on_render, :on_include def on_end missing_snippets.each do |template| add_offense("This template is not used", template: template) do |corrector| corrector.remove(@theme, template.relative_path.to_s) end end end def missing_snippets theme.snippets.reject { |t| @used_templates.include?(t.name) } end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
theme-check-1.6.1 | lib/theme_check/checks/unused_snippet.rb |
theme-check-1.6.0 | lib/theme_check/checks/unused_snippet.rb |