pegjs/spec/api
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
..
generated-parser-api.spec.js Improve indentation of variable declarations 2016-10-04 11:30:52 +02:00
pegjs-api.spec.js Improve indentation of variable declarations 2016-10-04 11:30:52 +02:00
plugin-api.spec.js Improve indentation of variable declarations 2016-10-04 11:30:52 +02:00