remove useless semicolons

This commit is contained in:
Alexander 2019-08-09 07:28:34 +03:00
parent 023e4c6249
commit d3bbad38ab

View file

@ -6,16 +6,16 @@ interface Author {
displayNames: string[];
preferredName?: string;
emails: string[];
};
}
interface AuthorMap {
[s: string]: Author
};
}
interface Command {
(...arg: string[]): void;
description?: string;
};
}
const mailMapPath = path.resolve(__dirname, "../.mailmap");
const authorsPath = path.resolve(__dirname, "../AUTHORS.md");