Eslint formatting updates (#4234)

* Eslint updated (newline-after-var)

* Fix newline-after-var

* Eslint updated (one-var-declaration-per-line)

* Fix one-var-declaration-per-line

* Fix additional errors

* Lint after merge
This commit is contained in:
Jaco Greeff
2017-01-23 13:39:52 +01:00
committed by GitHub
parent cff64233b4
commit 66e540edf8
165 changed files with 346 additions and 21 deletions

View File

@@ -33,6 +33,7 @@ class AccountSelectorItem extends Component {
const account = this.props.account;
const props = Object.assign({}, this.props);
delete props.account;
delete props.onSelectAccount;

View File

@@ -33,6 +33,7 @@ class AccountSelectorContainer extends Component {
const mapStateToProps = (state) => {
const { accounts } = state;
return { ...accounts };
};