Skip to content

Commit

Permalink
update eslint and tsloader
Browse files Browse the repository at this point in the history
- eslint loader required a few changes to test files
- other changes were due to different check that doesn't see eslint ignores
  • Loading branch information
James Criscuolo committed Jul 9, 2020
1 parent 7c32961 commit c948ad9
Show file tree
Hide file tree
Showing 8 changed files with 59 additions and 216 deletions.
4 changes: 4 additions & 0 deletions demo/demo-2.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,10 @@ const bob = buildUser(
videoRemoteBob
);

if (!alice || !bob) {
console.error("Something went wrong");
}

function buildUser(
webSocketServer: string,
aor: string,
Expand Down
4 changes: 4 additions & 0 deletions demo/demo-3.ts
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,10 @@ const bob = buildUser(
receiveBob
);

if (!alice || !bob) {
console.error("Something went wrong");
}

function buildUser(
webSocketServer: string,
aor: string,
Expand Down
Loading

0 comments on commit c948ad9

Please sign in to comment.