Skip to content

Commit

Permalink
@typescript-eslint/type-annotation-spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
a-tarasyuk committed Jun 14, 2019
1 parent afb5c9b commit c3517c0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion scripts/authors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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+([^<]+)<([^>]+)>/;
Expand Down

0 comments on commit c3517c0

Please sign in to comment.