Sha256: 219d58761ddb4bbb31f2db0ada8113fe87319a16392c0aaeb42fd4b0cc58d209

Contents?: true

Size: 926 Bytes

Versions: 155

Compression:

Stored size: 926 Bytes

Contents

# frozen_string_literal: true

module RuboCop
  module Cop
    module Lint
      # Do not mix named captures and numbered captures in a Regexp literal
      # because numbered capture is ignored if they're mixed.
      # Replace numbered captures with non-capturing groupings or
      # named captures.
      #
      # @example
      #   # bad
      #   /(?<foo>FOO)(BAR)/
      #
      #   # good
      #   /(?<foo>FOO)(?<bar>BAR)/
      #
      #   # good
      #   /(?<foo>FOO)(?:BAR)/
      #
      #   # good
      #   /(FOO)(BAR)/
      #
      class MixedRegexpCaptureTypes < Base
        MSG = 'Do not mix named captures and numbered captures in a Regexp literal.'

        def on_regexp(node)
          return if node.interpolation?
          return if node.each_capture(named: false).none?
          return if node.each_capture(named: true).none?

          add_offense(node)
        end
      end
    end
  end
end

Version data entries

155 entries across 154 versions & 16 rubygems

Version Path
rubocop-1.68.0 lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
rubocop-1.67.0 lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
rubocop-1.66.1 lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
rubocop-1.66.0 lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
rubocop-1.65.1 lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/rubocop-1.64.1/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
rubocop-1.65.0 lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/rubocop-1.64.1/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
rubocop-1.64.1 lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
rubocop-1.63.4 lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
rubocop-1.63.3 lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
rubocop-1.63.2 lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
harbr-2.8.1 vendor/bundle/ruby/3.2.0/gems/rubocop-1.57.2/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
rubocop-1.63.1 lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
rubocop-1.63.0 lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
bison-0.1.0 vendor/bundle/ruby/3.2.0/gems/rubocop-1.62.1/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
rubocop-1.62.1 lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
rubocop-1.62.0 lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
rubocop-1.61.0 lib/rubocop/cop/lint/mixed_regexp_capture_types.rb
mlh-rubocop-config-1.0.3 vendor/bundle/ruby/3.2.0/gems/rubocop-1.60.2/lib/rubocop/cop/lint/mixed_regexp_capture_types.rb