Skip to content

Commit

Permalink
remove: skip empty lines
Browse files Browse the repository at this point in the history
  • Loading branch information
rushatgabhane committed Apr 18, 2024
1 parent 3295539 commit 1f2abbd
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/scripts/detectRedirectCycle.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,7 @@
import {parse} from 'csv-parse';
import fs from 'fs';

const parser = parse({
// eslint-disable-next-line @typescript-eslint/camelcase
skip_empty_lines: true,
});
const parser = parse();
const adjacencyList: Record<string, string[]> = {};

function addEdge(source: string, target: string) {
Expand Down

0 comments on commit 1f2abbd

Please sign in to comment.