module RuboCop::Cop::AllowedPattern
This module encapsulates the ability to ignore certain lines when parsing.
Private Instance Methods
Source
# File lib/rubocop/cop/mixin/allowed_pattern.rb, line 10 def allowed_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_allowed_pattern?(line) end
Source
# File lib/rubocop/cop/mixin/allowed_pattern.rb, line 42 def allowed_patterns # Since there could be a pattern specified in the default config, merge the two # arrays together. if cop_config_deprecated_methods_values.any?(Regexp) cop_config_patterns_values + cop_config_deprecated_methods_values else cop_config_patterns_values end end
Source
# File lib/rubocop/cop/mixin/allowed_pattern.rb, line 58 def cop_config_deprecated_methods_values @cop_config_deprecated_methods_values ||= Array(cop_config.fetch('IgnoredMethods', [])) + Array(cop_config.fetch('ExcludedMethods', [])) end
Source
# File lib/rubocop/cop/mixin/allowed_pattern.rb, line 52 def cop_config_patterns_values @cop_config_patterns_values ||= Array(cop_config.fetch('AllowedPatterns', [])) + Array(cop_config.fetch('IgnoredPatterns', [])) end
Source
# File lib/rubocop/cop/mixin/allowed_pattern.rb, line 21 def ignored_line?(line) warn Rainbow(<<~WARNING).yellow, uplevel: 1 `ignored_line?` is deprecated. Use `allowed_line?` instead. WARNING allowed_line?(line) end
@deprecated Use allowed_line? instead
Source
# File lib/rubocop/cop/mixin/allowed_pattern.rb, line 29 def matches_allowed_pattern?(line) allowed_patterns.any? { |pattern| Regexp.new(pattern).match?(line) } end
Source
# File lib/rubocop/cop/mixin/allowed_pattern.rb, line 34 def matches_ignored_pattern?(line) warn Rainbow(<<~WARNING).yellow, uplevel: 1 `matches_ignored_pattern?` is deprecated. Use `matches_allowed_pattern?` instead. WARNING matches_allowed_pattern?(line) end
@deprecated Use matches_allowed_pattern? instead