Sha256: 64b33fdc8ae66136fa386fcbb7f495e2a21345d0f3360f8488f61d0397533861
Contents?: true
Size: 1.89 KB
Versions: 2
Compression:
Stored size: 1.89 KB
Contents
# frozen_string_literal: true require "rubocop" module RuboCop module Cop module GitHub class RailsViewRenderLiteral < Cop MSG = "render must be used with a string literal or an instance of a Class" def_node_matcher :literal?, <<-PATTERN ({str sym true false nil?} ...) PATTERN def_node_matcher :render?, <<-PATTERN (send nil? :render $...) PATTERN def_node_matcher :render_literal?, <<-PATTERN (send nil? :render ({str sym} $_) $...) PATTERN def_node_matcher :render_inst?, <<-PATTERN (send nil? :render (send _ :new ...) ...) PATTERN def_node_matcher :render_const?, <<-PATTERN (send nil? :render (const _ _) ...) PATTERN def_node_matcher :render_with_options?, <<-PATTERN (send nil? :render (hash $...) ...) PATTERN def_node_matcher :ignore_key?, <<-PATTERN (pair (sym { :inline }) $_) PATTERN def_node_matcher :partial_key?, <<-PATTERN (pair (sym { :file :template :layout :partial }) $_) PATTERN def on_send(node) return unless render?(node) if render_literal?(node) || render_inst?(node) || render_const?(node) elsif option_pairs = render_with_options?(node) if option_pairs.any? { |pair| ignore_key?(pair) } return end if partial_node = option_pairs.map { |pair| partial_key?(pair) }.compact.first if !literal?(partial_node) add_offense(node, location: :expression) end else add_offense(node, location: :expression) end else add_offense(node, location: :expression) end end end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
rubocop-github-0.15.0 | lib/rubocop/cop/github/rails_view_render_literal.rb |
rubocop-github-0.14.0 | lib/rubocop/cop/github/rails_view_render_literal.rb |