Commit 3504b631f9e5e168533a77b8f6469b36881c3405

Authored by Ryan Glover
1 parent d294b7dc48
Exists in master

add eslint rule for allowing variable alignment spacing

Showing 1 changed file with 1 additions and 0 deletions   Show diff stats
... ... @@ -23,6 +23,7 @@ module.exports = {
23 23 'eqeqeq': [2, 'smart'],
24 24 'indent': [2, 2],
25 25 'linebreak-style': [2, 'unix'],
  26 + 'no-multi-spaces': [1, { 'exceptions': { 'VariableDeclarator': true } } ],
26 27 'no-unneeded-ternary': [2],
27 28 'quotes': [2, 'single'],
28 29 'semi': [2, 'always'],
... ...