I was clearing Eslint rule documents and cannot figure out how to apply newlines between blocks.
For example, in jscs, I can reject them for the absence of a separation line:
if (!rows.length) { // code } var pagination; if (something) { // code }
"space-before-blocks" sounded as wanted, but it only applies to spaces, not newline characters.
javascript eslint
helion3
source share