@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

@ -47,7 +47,7 @@
"@typescript-eslint/prefer-namespace-keyword": "off",
"semi": "off",
"@typescript-eslint/semi": "error",
"@typescript-eslint/type-annotation-spacing": "off",
"@typescript-eslint/type-annotation-spacing": "error",
"@typescript-eslint/unified-signatures": "off",
"microsoft-typescript/object-literal-surrounding-space": "off",

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+([^<]+)<([^>]+)>/;