Sha256: a130c4004a6236b1e70d24a520b121b9ca907e18c64aabf336da4d26f7d42956
Contents?: true
Size: 955 Bytes
Versions: 7
Compression:
Stored size: 955 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_get`. # # @example # # # bad # Module.const_get(something) # # # good # Module.cs__const_get(something) class ConstGet < Cop MSG = 'The use of `Module#const_get` is a compatibility risk.' def eligible_node? node node.method?(:const_get) 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_get') } end end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems