lint: Re-run eslint --fix

This commit is contained in:
Richard Hansen 2021-01-29 01:14:03 -05:00
parent b02ab430fe
commit c1ef12b8da
3 changed files with 3 additions and 3 deletions

View file

@ -1217,7 +1217,7 @@ const handleChangesetRequest = async (socket, message) => {
socket.json.send({type: 'CHANGESET_REQ', data}); socket.json.send({type: 'CHANGESET_REQ', data});
} catch (err) { } catch (err) {
console.error(`Error while handling a changeset request for ${padIds.padId}`, console.error(`Error while handling a changeset request for ${padIds.padId}`,
err.toString(), message.data); err.toString(), message.data);
} }
}; };

View file

@ -113,7 +113,7 @@ const reconnectionTries = {
nextTry() { nextTry() {
// double the time to try to reconnect on every time reconnection fails // double the time to try to reconnect on every time reconnection fails
const nextCounterFactor = Math.pow(2, this.counter); const nextCounterFactor = 2 ** this.counter;
this.counter++; this.counter++;
return nextCounterFactor; return nextCounterFactor;

View file

@ -55,7 +55,7 @@ const tsort = (edges) => {
Object.keys(nodes).forEach(visit); Object.keys(nodes).forEach(visit);
return sorted; return sorted;
} };
/** /**
* TEST * TEST