Closed dangreenisrael closed 5 years ago
This adds a padding-around-after-all-blocks rule
padding-around-after-all-blocks
const someText = 'abc'; afterAll(() => { }); describe('someText', () => {});
becomes
const someText = 'abc'; // padding before afterAll(() => { }); // padding after describe('someText', () => {});
Oops. Approved, but there are some merg conflicts.
This adds a
padding-around-after-all-blocks
rulebecomes