Sha256: 624e5418429f3e02fbc997c920c67f66704255d985f1378c76cc31bb912ba489
Contents?: true
Size: 934 Bytes
Versions: 7
Compression:
Stored size: 934 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#constants`. # # @example # # # bad # Module.constants # # # good # Module.cs__constants class Constants < Cop MSG = 'The use of `Module#constants` is a compatibility risk.' def eligible_node? node node.method?(:constants) 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__constants') } end end end end end end
Version data entries
7 entries across 7 versions & 1 rubygems