Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix lint #504

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Consumer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ export class Consumer extends EnhancedEventEmitter
appData,
paused,
producerPaused,
score = { score: 10, producerScore: 10, producerScores: [] },
score = { score: 10, producerScore: 10, producerScores: [] }, // eslint-disable-line
preferredLayers
}:
{
Expand Down
10 changes: 5 additions & 5 deletions src/Router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ export class Router extends EnhancedEventEmitter
preferTcp = false,
initialAvailableOutgoingBitrate = 600000,
enableSctp = false,
numSctpStreams = { OS: 1024, MIS: 1024 },
numSctpStreams = { OS: 1024, MIS: 1024 }, // eslint-disable-line
maxSctpMessageSize = 262144,
sctpSendBufferSize = 262144,
appData = {}
Expand Down Expand Up @@ -439,7 +439,7 @@ export class Router extends EnhancedEventEmitter
rtcpMux = true,
comedia = false,
enableSctp = false,
numSctpStreams = { OS: 1024, MIS: 1024 },
numSctpStreams = { OS: 1024, MIS: 1024 }, // eslint-disable-line
maxSctpMessageSize = 262144,
sctpSendBufferSize = 262144,
enableSrtp = false,
Expand Down Expand Up @@ -542,7 +542,7 @@ export class Router extends EnhancedEventEmitter
{
listenIp,
enableSctp = false,
numSctpStreams = { OS: 1024, MIS: 1024 },
numSctpStreams = { OS: 1024, MIS: 1024 }, // eslint-disable-line
maxSctpMessageSize = 268435456,
sctpSendBufferSize = 268435456,
enableRtx = false,
Expand Down Expand Up @@ -632,7 +632,7 @@ export class Router extends EnhancedEventEmitter
appData = {}
}: DirectTransportOptions =
{
maxMessageSize : 262144
maxMessageSize : 262144 // eslint-disable-line
}
): Promise<DirectTransport>
{
Expand Down Expand Up @@ -687,7 +687,7 @@ export class Router extends EnhancedEventEmitter
router,
listenIp = '127.0.0.1',
enableSctp = true,
numSctpStreams = { OS: 1024, MIS: 1024 },
numSctpStreams = { OS: 1024, MIS: 1024 }, // eslint-disable-line
enableRtx = false,
enableSrtp = false
}: PipeToRouterOptions
Expand Down