@typescript-eslint/type-annotation-spacing

This commit is contained in:
Alexander T
2019-06-14 11:29:00 +03:00
parent afb5c9bfcf
commit c3517c073e
2 changed files with 2 additions and 2 deletions

View File

@@ -111,7 +111,7 @@ namespace Commands {
};
listKnownAuthors.description = "List known authors as listed in .mailmap file.";
export const listAuthors: Command = function (...specs:string[]) {
export const listAuthors: Command = function (...specs: string[]) {
const cmd = "git shortlog -se " + specs.join(" ");
console.log(cmd);
const outputRegExp = /\d+\s+([^<]+)<([^>]+)>/;