addresses lint warnings

This commit is contained in:
mikesealey 2025-01-29 18:28:24 +00:00
parent 6a94aada19
commit 690f1a6ae6
2 changed files with 1 additions and 2 deletions

View File

@ -16,7 +16,7 @@ export async function jsonFromCsvString(csvString: string) {
ignoreEmpty: false,
delimiter: possibleDelimeters[i],
}).fromString(csvString)
for (const [i, r] of result.entries()) {
for (const [, r] of result.entries()) {
// The purpose of this is to find rows that have been split
// into the wrong number of columns - Any valid .CSV file will have
// the same number of colums in each row

View File

@ -1,4 +1,3 @@
import { delimiter } from "path"
import { jsonFromCsvString } from "../csv"
describe("csv", () => {