Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 438 Bytes

ambiguous_regexp_literal.md

File metadata and controls

18 lines (12 loc) · 438 Bytes

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)