Files
gitlabhq/app/models
Robert Speicher 989a9607e6 Merge branch 'rubocop/enable-identical-conditional-branches-cop' into 'master'
Enable Style/IdenticalConditionalBranches Rubocop cop

## What does this MR do?

This MR enables Rubocop cop that checks for identical lines at the end of each branch of a conditional statement.

Examples:

```ruby
@bad
if condition
  do_x
  do_z
else
  do_y
  do_z
end

@good
if condition
  do_x
else
  do_y
end
do_z
```

## What are the relevant issue numbers?

#17478

See merge request !5011
2016-07-08 16:34:53 +00:00
..
2016-07-07 18:56:02 +08:00
2011-10-09 00:36:38 +03:00
2016-03-06 23:07:19 -05:00
2016-03-29 12:19:09 +01:00
2016-07-01 15:34:10 +02:00
2016-07-06 18:50:59 -04:00