Skip to content

Commit

Permalink
fix: linting on the parser file
Browse files Browse the repository at this point in the history
  • Loading branch information
arun3528 committed Aug 8, 2022
1 parent c49582b commit d8a9635
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions src/parser.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
/* eslint-disable max-classes-per-file */
import { IceOptionsLine } from './lines';
import { BandwidthLine } from './lines/bandwidth-line';
import { BundleGroupLine } from './lines/bundle-group-line';
import { CandidateLine } from './lines/candidate-line';
Expand All @@ -8,7 +9,6 @@ import { DirectionLine } from './lines/direction-line';
import { ExtMapLine } from './lines/extmap-line';
import { FingerprintLine } from './lines/fingerprint-line';
import { FmtpLine } from './lines/fmtp-line';
import { IceOptionsLine } from './lines';
import { IcePwdLine } from './lines/ice-pwd-line';
import { IceUfragLine } from './lines/ice-ufrag-line';
import { Line } from './lines/line';
Expand All @@ -24,17 +24,11 @@ import { SctpPortLine } from './lines/sctp-port-line';
import { SessionInformationLine } from './lines/session-information-line';
import { SessionNameLine } from './lines/session-name-line';
import { SetupLine } from './lines/setup-line';
import { SimulcastLine } from './lines/simulcast-line';
import { TimingLine } from './lines/timing-line';
import { UnknownLine } from './lines/unknown-line';
import { VersionLine } from './lines/version-line';
import {
ApplicationMediaDescription,
AvMediaDescription,
MediaDescription,
Sdp,
SdpBlock,
} from './model';
import { SimulcastLine } from './lines/simulcast-line';
import { ApplicationMediaDescription, AvMediaDescription, MediaDescription, Sdp, SdpBlock } from './model';

type Parser = (line: string) => Line | undefined;
type LineType =
Expand Down

0 comments on commit d8a9635

Please sign in to comment.