refactor: eslint and prettier conflict will be resolved and formatted

This commit is contained in:
Enes Köksal
2026-04-23 17:05:43 +03:00
parent 385b61f29b
commit 3cfea40fbd
219 changed files with 16638 additions and 13663 deletions
+6 -2
View File
@@ -210,7 +210,9 @@ export function buildCommentsCsv(
row.hasImageAttachment,
row.hasAnnotation,
row.createdAtIso,
].map(csvCell).join(',')
]
.map(csvCell)
.join(',')
);
}
@@ -242,7 +244,9 @@ export function buildCommentsPdf(
`image=${row.hasImageAttachment ? 'yes' : 'no'}`,
`annotation=${row.hasAnnotation ? 'yes' : 'no'}`,
row.tag ? `tag=${row.tag}` : null,
].filter((item): item is string => item !== null).join(', ');
]
.filter((item): item is string => item !== null)
.join(', ');
lines.push(base);
lines.push(` ${details}`);