refactor: remove unused parameter

This commit is contained in:
Kim, Jimin 2025-01-20 19:03:27 +09:00
parent 5dc2f2d69e
commit 06fa0502ae
Signed by: pomp
GPG key ID: 2B516173EDD492EB

View file

@ -69,7 +69,7 @@ async function parseFile(mode: ParseMode, path: string): Promise<void> {
*/
const markdownRaw = fs.readFileSync(path, "utf8")
const markdownData = await parseMarkdown(markdownRaw, path, mode)
const markdownData = await parseMarkdown(markdownRaw, path)
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
// @ts-ignore
const { humanizedDuration, totalWords } = readTimeEstimate.default(