Skip to content

Commit babb84d

Browse files
committed
*: upgrade eslint
1 parent 2c75b04 commit babb84d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+972
-904
lines changed

.eslintrc.js

-14
This file was deleted.

cli/.eslintrc.json

-5
This file was deleted.

cli/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"watch": "nodemon --ext ts --ignore dist --watch ../discojs/discojs-node/dist --watch ../server/dist --watch . --exec npm run",
88
"start": "npm run build && node dist/cli.js",
99
"build": "tsc",
10-
"lint": "npx eslint --ext ts --max-warnings 0 .",
10+
"lint": "npx eslint .",
1111
"test": ": nothing"
1212
},
1313
"author": "",

cli/src/data.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ async function simplefaceData (task: Task): Promise<data.DataSplit> {
3232

3333
const filesPerFolder = [youngFiles, oldFiles]
3434

35-
const labels = filesPerFolder.flatMap((files, index) => Array(files.length).fill(index))
35+
const labels = filesPerFolder.flatMap((files, index) => Array<string>(files.length).fill(`${index}`))
3636
const files = filesPerFolder.flat()
3737

3838
return await new NodeImageLoader(task).loadAll(files, { labels })

discojs/discojs-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"watch": "nodemon --ext ts --ignore dist --exec npm run",
99
"build": "tsc",
10-
"lint": "npx eslint --ext ts --max-warnings 0 .",
10+
"lint": "npx eslint .",
1111
"test": "mocha",
1212
"docs": "typedoc ./src/index.ts --theme oxide"
1313
},

discojs/discojs-core/src/aggregator/robust.ts

+6-11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
// TODO remove as nothing is implemented
2+
13
import { Base as Aggregator } from './base.js'
24
import type { client, Model, WeightsContainer } from '../index.js'
35

@@ -8,11 +10,8 @@ export type Momentum = WeightsContainer
810
// TODO @s314cy: store previous round contributions + be able to access own previous contribution
911
// for computing the momentum
1012
export class RobustAggregator extends Aggregator<WeightsContainer> {
11-
// TODO @s314y: move to task definition
12-
private readonly beta = 1
13-
1413
constructor (
15-
private readonly tauPercentile: number,
14+
_tauPercentile: number,
1615
model?: Model,
1716
roundCutoff?: number,
1817
communicationRounds?: number
@@ -35,19 +34,15 @@ export class RobustAggregator extends Aggregator<WeightsContainer> {
3534
return false
3635
}
3736

38-
aggregate (): void {
37+
override aggregate (): void {
3938
throw new Error('not implemented')
4039
}
4140

42-
makePayloads (weights: WeightsContainer): Map<client.NodeID, WeightsContainer> {
43-
return undefined as any
41+
override makePayloads (): Map<client.NodeID, WeightsContainer> {
42+
throw new Error('not implemented')
4443
}
4544

4645
isFull (): boolean {
4746
return true
4847
}
49-
50-
private computeMomentum (a: WeightsContainer, b: WeightsContainer): WeightsContainer {
51-
return a.sub(b).mul(1 - this.beta).add(a.mul(this.beta))
52-
}
5348
}

discojs/discojs-core/src/client/base.ts

+20-20
Original file line numberDiff line numberDiff line change
@@ -67,46 +67,46 @@ export abstract class Base {
6767

6868
/**
6969
* Communication callback called once at the beginning of the training instance.
70-
* @param weights The initial model weights
71-
* @param trainingInformant The training informant
70+
* @param _weights The initial model weights
71+
* @param _trainingInformant The training informant
7272
*/
7373
async onTrainBeginCommunication (
74-
weights: WeightsContainer,
75-
trainingInformant: TrainingInformant
74+
_weights: WeightsContainer,
75+
_trainingInformant: TrainingInformant
7676
): Promise<void> {}
7777

7878
/**
7979
* Communication callback called once at the end of the training instance.
80-
* @param weights The final model weights
81-
* @param trainingInformant The training informant
80+
* @param _weights The final model weights
81+
* @param _trainingInformant The training informant
8282
*/
8383
async onTrainEndCommunication (
84-
weights: WeightsContainer,
85-
trainingInformant: TrainingInformant
84+
_weights: WeightsContainer,
85+
_trainingInformant: TrainingInformant
8686
): Promise<void> {}
8787

8888
/**
8989
* Communication callback called at the beginning of every training round.
90-
* @param weights The most recent local weight updates
91-
* @param round The current training round
92-
* @param trainingInformant The training informant
90+
* @param _weights The most recent local weight updates
91+
* @param _round The current training round
92+
* @param _trainingInformant The training informant
9393
*/
9494
async onRoundBeginCommunication (
95-
weights: WeightsContainer,
96-
round: number,
97-
trainingInformant: TrainingInformant
95+
_weights: WeightsContainer,
96+
_round: number,
97+
_trainingInformant: TrainingInformant
9898
): Promise<void> {}
9999

100100
/**
101101
* Communication callback called the end of every training round.
102-
* @param weights The most recent local weight updates
103-
* @param round The current training round
104-
* @param trainingInformant The training informant
102+
* @param _weights The most recent local weight updates
103+
* @param _round The current training round
104+
* @param _trainingInformant The training informant
105105
*/
106106
async onRoundEndCommunication (
107-
weights: WeightsContainer,
108-
round: number,
109-
trainingInformant: TrainingInformant
107+
_weights: WeightsContainer,
108+
_round: number,
109+
_trainingInformant: TrainingInformant
110110
): Promise<void> {}
111111

112112
get nodes (): Set<NodeID> {

discojs/discojs-core/src/client/decentralized/base.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { Map, Set } from 'immutable'
22

3-
import { type TrainingInformant, type WeightsContainer, serialization } from '../../index.js'
3+
import { type WeightsContainer, serialization } from '../../index.js'
44
import { Client, type NodeID } from '../index.js'
55
import { type, type ClientConnected } from '../messages.js'
66
import { timeout } from '../utils.js'
@@ -125,7 +125,7 @@ export class Base extends Client {
125125
this.pool = new PeerPool(peerIdMsg.id)
126126
}
127127

128-
async disconnect (): Promise<void> {
128+
disconnect (): Promise<void> {
129129
// Disconnect from peers
130130
this.pool?.shutdown()
131131
this.pool = undefined
@@ -139,12 +139,13 @@ export class Base extends Client {
139139
this.server?.disconnect()
140140
this._server = undefined
141141
this._ownId = undefined
142+
143+
return Promise.resolve()
142144
}
143145

144-
async onRoundBeginCommunication (
145-
weights: WeightsContainer,
146+
override async onRoundBeginCommunication (
147+
_: WeightsContainer,
146148
round: number,
147-
trainingInformant: TrainingInformant
148149
): Promise<void> {
149150
// Reset peers list at each round of training to make sure client works with an updated peers
150151
// list, maintained by the server. Adds any received weights to the aggregator.
@@ -153,10 +154,9 @@ export class Base extends Client {
153154
this.aggregationResult = this.aggregator.receiveResult()
154155
}
155156

156-
async onRoundEndCommunication (
157+
override async onRoundEndCommunication (
157158
weights: WeightsContainer,
158159
round: number,
159-
trainingInformant: TrainingInformant
160160
): Promise<void> {
161161
let result = weights
162162

discojs/discojs-core/src/client/decentralized/peer_pool.spec.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ describe('peer pool', function () {
1212

1313
let pools: Map<NodeID, PeerPool>
1414

15-
beforeEach(async () => {
15+
beforeEach(() => {
1616
const count = 3
1717

1818
pools = Map(Range(1, count + 1).map(String).map((id) =>
@@ -26,8 +26,8 @@ describe('peer pool', function () {
2626

2727
function mockServer (poolId: string): EventConnection {
2828
return {
29-
send: (msg: any): void => {
30-
const signal: messages.SignalForPeer = msg
29+
send: (msg): void => {
30+
const signal = msg as messages.SignalForPeer
3131
const otherPool = pools.get(signal.peer)
3232
if (otherPool === undefined) {
3333
throw new Error(`signal for unknown pool: ${signal.peer}`)
@@ -71,7 +71,7 @@ describe('peer pool', function () {
7171
const messages =
7272
peersSets
7373
.entrySeq()
74-
.map(([poolID, peers]) =>
74+
.map(([_, peers]) =>
7575
peers
7676
.keySeq().map((id) => mockWeights(id))
7777
.toArray())
@@ -81,7 +81,7 @@ describe('peer pool', function () {
8181
peersSets
8282
.entrySeq()
8383
.forEach(([poolID, peers]) =>
84-
peers.forEach((peer, id) => { peer.send(mockWeights(poolID)) }))
84+
peers.forEach((peer) => { peer.send(mockWeights(poolID)) }))
8585

8686
const exchanged = (await Promise.all(
8787
peersSets
@@ -106,7 +106,7 @@ describe('peer pool', function () {
106106
await assertCanSendMessagesToEach(poolsPeers)
107107
})
108108

109-
it('doesn\'t reconnect known peers', async () => {
109+
it("doesn't reconnect known peers", async () => {
110110
const poolsPeersFirst = await getAllPeers(pools)
111111
await assertCanSendMessagesToEach(poolsPeersFirst)
112112

discojs/discojs-core/src/client/decentralized/peer_pool.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export class PeerPool {
5151
))
5252

5353
console.info(`[${this.id}] asked to connect new peers:`, newPeers.keySeq().toJS())
54-
const newPeersConnections = newPeers.map((peer, id) => new PeerConnection(this.id, peer, signallingServer))
54+
const newPeersConnections = newPeers.map((peer) => new PeerConnection(this.id, peer, signallingServer))
5555

5656
// adding peers to pool before connecting them because they must be set to call signal on them
5757
this.peers = this.peers.merge(newPeersConnections)

discojs/discojs-core/src/client/event_connection.ts

+8-9
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ export async function waitMessageWithTimeout<T extends type> (connection: EventC
3030

3131
export class PeerConnection extends EventEmitter<{ [K in type]: NarrowMessage<K> }> implements EventConnection {
3232
constructor (
33-
private readonly ownId: NodeID,
33+
private readonly _ownId: NodeID,
3434
private readonly peer: Peer,
3535
private readonly signallingServer: EventConnection
3636
) {
@@ -48,7 +48,7 @@ export class PeerConnection extends EventEmitter<{ [K in type]: NarrowMessage<K>
4848
})
4949

5050
this.peer.on('data', (data) => {
51-
const msg = msgpack.decode(data)
51+
const msg: unknown = msgpack.decode(data)
5252

5353
if (!decentralizedMessages.isPeerMessage(msg)) {
5454
throw new Error(`invalid message received: ${JSON.stringify(msg)}`)
@@ -83,27 +83,26 @@ export class PeerConnection extends EventEmitter<{ [K in type]: NarrowMessage<K>
8383
export class WebSocketServer extends EventEmitter<{ [K in type]: NarrowMessage<K> }> implements EventConnection {
8484
private constructor (
8585
private readonly socket: isomorphic.WebSocket,
86-
private readonly validateReceived?: (msg: any) => boolean,
87-
private readonly validateSent?: (msg: any) => boolean
86+
private readonly validateSent?: (msg: Message) => boolean
8887
) { super() }
8988

9089
static async connect (url: URL,
91-
validateReceived?: (msg: any) => boolean,
92-
validateSent?: (msg: any) => boolean): Promise<WebSocketServer> {
90+
validateReceived: (msg: unknown) => msg is Message,
91+
validateSent: (msg: Message) => boolean): Promise<WebSocketServer> {
9392
const ws = new isomorphic.WebSocket(url)
9493
ws.binaryType = 'arraybuffer'
9594

96-
const server: WebSocketServer = new WebSocketServer(ws, validateReceived, validateSent)
95+
const server: WebSocketServer = new WebSocketServer(ws, validateSent)
9796

9897
ws.onmessage = (event: isomorphic.MessageEvent) => {
9998
if (!(event.data instanceof ArrayBuffer)) {
10099
throw new Error('server did not send an ArrayBuffer')
101100
}
102101

103-
const msg = msgpack.decode(new Uint8Array(event.data))
102+
const msg: unknown = msgpack.decode(new Uint8Array(event.data))
104103

105104
// Validate message format
106-
if (validateReceived !== undefined && !validateReceived(msg)) {
105+
if (!validateReceived(msg)) {
107106
throw new Error(`invalid message received: ${JSON.stringify(msg)}`)
108107
}
109108

0 commit comments

Comments
 (0)