lint: Add dangling commas in JavaScript objects.

This commit is contained in:
Tim Abbott
2017-01-11 15:17:43 -08:00
parent 7ca2d21d97
commit 998dff9e50
63 changed files with 302 additions and 302 deletions

View File

@@ -6,7 +6,7 @@ var CLOSE_REASONS = {
auth_fail: {code: 4002, msg: "Authentication failed"},
ack_timeout: {code: 4003, msg: "ACK timeout"},
cant_send: {code: 4004, msg: "User attempted to send while Socket was not ready"},
unsuspend: {code: 4005, msg: "Got unsuspend event"}
unsuspend: {code: 4005, msg: "Got unsuspend event"},
};
function Socket(url) {
@@ -404,7 +404,7 @@ Socket.prototype = {
}
this._save_localstorage_requests();
}
},
};
return Socket;