Pattern: Missing empty line after final let
Issue: -
Checks if there is an empty line after the last let
block.
# bad
let(:foo) { bar }
let(:something) { other }
it { does_something }
# good
let(:foo) { bar }
let(:something) { other }
it { does_something }