Reports duplicate branches in a RegExp alternation. Duplicate branches slow down matching and obscure the intent of the expression.

Example:


  (alpha|bravo|charlie|alpha)

After the quick-fix is applied:


  (alpha|bravo|charlie)

New in 2017.1