Sha256: 976fba9e0185b199a331d239db1865b10a910db72e52cfbeba6267809cc8d694
Contents?: true
Size: 695 Bytes
Versions: 81
Compression:
Stored size: 695 Bytes
Contents
# frozen_string_literal: true module RuboCop module Cop # This module encapsulates the ability to ignore certain lines when # parsing. module IgnoredPattern private def ignored_line?(line) line = if line.respond_to?(:source_line) line.source_line elsif line.respond_to?(:node) line.node.source_range.source_line end matches_ignored_pattern?(line) end def matches_ignored_pattern?(line) ignored_patterns.any? { |pattern| Regexp.new(pattern).match?(line) } end def ignored_patterns cop_config['IgnoredPatterns'] || [] end end end end
Version data entries
81 entries across 81 versions & 10 rubygems