Skip to content

Commit d3bbad3

Browse files
committed
remove useless semicolons
1 parent 023e4c6 commit d3bbad3

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

scripts/authors.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,16 @@ interface Author {
66
displayNames: string[];
77
preferredName?: string;
88
emails: string[];
9-
};
9+
}
1010

1111
interface AuthorMap {
1212
[s: string]: Author
13-
};
13+
}
1414

1515
interface Command {
1616
(...arg: string[]): void;
1717
description?: string;
18-
};
18+
}
1919

2020
const mailMapPath = path.resolve(__dirname, "../.mailmap");
2121
const authorsPath = path.resolve(__dirname, "../AUTHORS.md");

0 commit comments

Comments
 (0)