[eslint] changing to always-multiline on comma-dangle (#794)

This commit is contained in:
Maxime Beauchemin
2016-07-20 21:32:20 -07:00
committed by GitHub
parent 7bba9f73d0
commit fa0497de5e
24 changed files with 77 additions and 77 deletions

View File

@@ -76,7 +76,7 @@ function parallelCoordVis(slice) {
mouseover: function (d) {
parcoords.highlight([d]);
},
mouseout: parcoords.unhighlight
mouseout: parcoords.unhighlight,
});
// update data table on brush event
parcoords.on("brush", function (d) {
@@ -88,7 +88,7 @@ function parallelCoordVis(slice) {
mouseover: function (d) {
parcoords.highlight([d]);
},
mouseout: parcoords.unhighlight
mouseout: parcoords.unhighlight,
});
});
}
@@ -101,7 +101,7 @@ function parallelCoordVis(slice) {
return {
render: refresh,
resize: refresh
resize: refresh,
};
}