Skip to content

Commit b933cd2

Browse files
committedOct 29, 2024·
Sort unused file paths in symbols reporter (resolves #817)
1 parent fb9596a commit b933cd2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed
 

‎packages/knip/src/reporters/symbols.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ export default ({ report, issues, tagHints, configurationHints, noConfigHints, i
5151
const issuesForType = Array.from(issues._files);
5252
if (issuesForType.length > 0) {
5353
title && logTitle(title, issuesForType.length);
54-
for (const issue of issuesForType) {
54+
const sortedIssues = issuesForType.sort((a, b) => a.filePath.localeCompare(b.filePath));
55+
for (const issue of sortedIssues) {
5556
const relPath = toRelative(issue.filePath);
5657
if (issue.isFixed) console.log(dim(`${relPath} (removed)`));
5758
else if (issue.severity === 'warn') console.log(dim(relPath));

0 commit comments

Comments
 (0)