Pattern: Missing empty line after subject
Issue: -
Checks if there is an empty line after subject
block.
# bad
subject(:obj) { described_class }
let(:foo) { bar }
# good
subject(:obj) { described_class }
let(:foo) { bar }
Pattern: Missing empty line after subject
Issue: -
Checks if there is an empty line after subject
block.
# bad
subject(:obj) { described_class }
let(:foo) { bar }
# good
subject(:obj) { described_class }
let(:foo) { bar }