warning
no-multiple-empty-linesRestricts the number of allowed empty lines
Examples
❌ Incorrect
const foo = bar;
const bar = foo;
✅ Correct
const foo = bar;
const bar = foo;
Restricts the number of allowed empty lines
❌ Incorrect
const foo = bar;
const bar = foo;
✅ Correct
const foo = bar;
const bar = foo;