DEV Community

Discussion on: How should we indent `const` declarations?

Collapse
 
alsotropino profile image
alsotropino
const
  foo = 10,
  bar = 20,
  baz = 30
;
if (test) {
  console.log('aligned (usign spaces, for the "shake" of Richard Hendricks)');
}