You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
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
  };
8 years ago
..
generate-bytecode.js Improve indentation of variable declarations 8 years ago
generate-js.js Improve indentation of variable declarations 8 years ago
remove-proxy-rules.js Use only "//" comments 8 years ago
report-duplicate-labels.js Avoid aligning "=" 8 years ago
report-duplicate-rules.js Avoid aligning "=" 8 years ago
report-infinite-recursion.js Avoid aligning "=" 8 years ago
report-infinite-repetition.js Avoid aligning "=" 8 years ago
report-undefined-rules.js Avoid aligning "=" 8 years ago