← Back

no-multiple-empty-lines warning

Restricts the number of allowed empty lines

Examples

❌  Incorrect

const foo = bar;



const bar = foo;

✅  Correct

const foo = bar;

const bar = foo;