Fix ES6 space-in-parens eslint rule [MAILPOET-1082]

This commit is contained in:
stoletniy
2017-09-18 18:25:37 +03:00
parent d44adedade
commit e51aa8c271
2 changed files with 1 additions and 2 deletions

View File

@@ -51,7 +51,6 @@
"block-scoped-var": 0,
"no-extra-bind": 0,
"class-methods-use-this": 0,
"space-in-parens": 0,
"no-case-declarations": 0,
"array-bracket-spacing": 0,
"no-else-return": 0,

View File

@@ -57,7 +57,7 @@ define(
<span className={stepClasses}>
{ label }
</span>
{ (index < (this.state.steps.length - 1) ) ? ' > ' : '' }
{ (index < (this.state.steps.length - 1)) ? ' > ' : '' }
</span>
);
});