whitespace after function assignment

This commit is contained in:
Sebastian McKenzie
2014-12-05 23:06:05 +11:00
parent 680c6b166a
commit d7af8c6261

View File

@@ -28,7 +28,13 @@ exports.before = {
};
exports.after = {
nodes: {},
nodes: {
AssignmentExpression: function (node) {
if (t.isFunction(node.right)) {
return 1;
}
}
},
list: {
VariableDeclaration: function (node) {