Sha256: dc0796a21cd025f81bd38d768937192083a929d57c8520b9051b1e1caa591524
Contents?: true
Size: 377 Bytes
Versions: 6861
Compression:
Stored size: 377 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop # This module encapsulates the ability to ignore certain methods when # parsing. module IgnoredMethods private def ignored_method?(name) ignored_methods.include?(name.to_s) end def ignored_methods cop_config.fetch('IgnoredMethods', []) end end end end
Version data entries
6,861 entries across 6,835 versions & 29 rubygems