seegno / jscs-config-seegno

Seegno-flavored JSCS config
2 stars 0 forks source link

Padding new lines after assignment blocks #3

Open ruiquelhas opened 8 years ago

ruiquelhas commented 8 years ago

It might make sense to have a rule that complains about:

let foo = {};

foo.bar = {
  ...
};
foo.baz = {
  ...
};

and suggests using:

let foo = {};

foo.bar = {
  ...
};

foo.baz = {
  ...
};

requirePaddingNewLinesAfterBlocks does not seem to do the trick.