pegjs/lib
David Majda 7ca229a432 Improve indentation of variable declarations
Before this commit, continuation lines of multi-line values in variable
declaration initializers were aligned with the variable name:

  let foo = {
        a: 5,
        b: 6
      };

This was highly irregular, maintenance intensive, and made declarations
look different from assignments.

This commit changes the indentation to be more regular and similar to
assignments:

  let foo = {
    a: 5,
    b: 6
  };
2016-10-04 11:30:52 +02:00
..
compiler Improve indentation of variable declarations 2016-10-04 11:30:52 +02:00
.eslintrc.json ESLint: Set environments better 2016-01-29 14:50:38 +01:00
grammar-error.js Use only "//" comments 2016-09-20 15:07:39 +02:00
parser.js Improve indentation of variable declarations 2016-10-04 11:30:52 +02:00
peg.js Improve indentation of variable declarations 2016-10-04 11:30:52 +02:00