Pattern: Misaligned left let
brace
Issue: -
Checks that left braces for adjacent single line let
s are aligned.
# bad
let(:foobar) { blahblah }
let(:baz) { bar }
let(:a) { b }
# good
let(:foobar) { blahblah }
let(:baz) { bar }
let(:a) { b }