Sha256: 89eda98c577bd91a8e329cc4ae83d40f8873c367dcc8c747b7c65c538e6cfa17
Contents?: true
Size: 963 Bytes
Versions: 7
Compression:
Stored size: 963 Bytes
Contents
# Copyright (c) 2020 Contrast Security, Inc. See https://www.contrastsecurity.com/enduser-terms-0317a for more details. # frozen_string_literal: true module RuboCop module Cop module Security module Module # This cop checks for the use of `Module#const_set`. # # @example # # # bad # Module.const_set(symbol, value) # # # good # Module.cs__const_set(symbol, value) class ConstSet < Cop MSG = 'The use of `Module#const_set` is a compatibility risk.' def eligible_node? node node.method?(:const_set) end def on_send node return false unless eligible_node?(node) add_offense(node, location: :selector) end def autocorrect node ->(corrector) { corrector.replace(node.loc.selector, 'cs__const_set') } end end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems