From d3bbad38abcbcd1a079bfd518a09415b432aea68 Mon Sep 17 00:00:00 2001 From: Alexander Date: Fri, 9 Aug 2019 07:28:34 +0300 Subject: [PATCH] remove useless semicolons --- scripts/authors.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/authors.ts b/scripts/authors.ts index 283567aacff..0bcfc425790 100644 --- a/scripts/authors.ts +++ b/scripts/authors.ts @@ -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");