Run new lint rules (#5413)

This commit is contained in:
Brian Ng
2017-03-04 09:46:01 -06:00
committed by Henry Zhu
parent f7e2d88f6c
commit 8a82cc060a
181 changed files with 1459 additions and 1454 deletions

View File

@@ -62,7 +62,7 @@ export function _containerInsert(from, nodes) {
parent: this.parent,
container: this.container,
listKey: this.listKey,
key: to
key: to,
}));
}
}
@@ -197,7 +197,7 @@ export function unshiftContainer(listKey, nodes) {
parent: this.node,
container: this.node[listKey],
listKey,
key: 0
key: 0,
});
return path.insertBefore(nodes);
@@ -217,7 +217,7 @@ export function pushContainer(listKey, nodes) {
parent: this.node,
container: container,
listKey,
key: container.length
key: container.length,
});
return path.replaceWithMultiple(nodes);