Sha256: 4f255690cd180041ade547b9437f2f999e1c71c68760a05f4dc92b62cd3fd6b3
Contents?: true
Size: 1.12 KB
Versions: 47
Compression:
Stored size: 1.12 KB
Contents
# frozen_string_literal: true module RuboCop module Cop module Lint # This cop checks for ambiguous regexp literals in the first argument of # a method invocation without parentheses. # # @example # # # bad # # # This is interpreted as a method invocation with a regexp literal, # # but it could possibly be `/` method invocations. # # (i.e. `do_something./(pattern)./(i)`) # do_something /pattern/i # # @example # # # good # # # With parentheses, there's no ambiguity. # do_something(/pattern/i) class AmbiguousRegexpLiteral < Cop include ParserDiagnostic MSG = 'Ambiguous regexp literal. Parenthesize the method arguments ' \ "if it's surely a regexp literal, or add a whitespace to the " \ 'right of the `/` if it should be a division.' private def relevant_diagnostic?(diagnostic) diagnostic.reason == :ambiguous_literal end def alternative_message(_diagnostic) MSG end end end end end
Version data entries
47 entries across 28 versions & 3 rubygems