Fix eslint no-unreachable in ES6

[MAILPOET-1085]
This commit is contained in:
Pavel Dohnal
2017-09-06 09:32:36 +01:00
parent b4092e0641
commit 7097ea5d9b
2 changed files with 0 additions and 4 deletions

View File

@@ -43,7 +43,6 @@
"default-case": 0,
"array-callback-return": 0,
"consistent-return": 0,
"no-unreachable": 0,
"import/no-unresolved": 0,
"import/extensions": 0,
"import/no-extraneous-dependencies": 0,

View File

@@ -212,7 +212,6 @@ define([
year={ this.state.year }
placeholder={ this.props.field.year_placeholder }
/>);
break;
case 'MM':
return (<FormFieldDateMonth
@@ -224,7 +223,6 @@ define([
monthNames={ monthNames }
placeholder={ this.props.field.month_placeholder }
/>);
break;
case 'DD':
return (<FormFieldDateDay
@@ -235,7 +233,6 @@ define([
day={ this.state.day }
placeholder={ this.props.field.day_placeholder }
/>);
break;
}
});