eslint-plugin-jest-formatting
Version:
ESLint rules for formatting jest tests
25 lines (17 loc) • 351 B
Markdown
This rule enforces a line of padding before afterEach blocks
Examples of **incorrect** code for this rule:
```js
const something = 123;
afterEach(() => {
// more stuff
});
```
Examples of **correct** code for this rule:
```js
const something = 123;
afterEach(() => {
// more stuff
});
```