Skip to content

Commit c3517c0

Browse files
committed
@typescript-eslint/type-annotation-spacing
1 parent afb5c9b commit c3517c0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.eslintrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"@typescript-eslint/prefer-namespace-keyword": "off",
4848
"semi": "off",
4949
"@typescript-eslint/semi": "error",
50-
"@typescript-eslint/type-annotation-spacing": "off",
50+
"@typescript-eslint/type-annotation-spacing": "error",
5151
"@typescript-eslint/unified-signatures": "off",
5252

5353
"microsoft-typescript/object-literal-surrounding-space": "off",

scripts/authors.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ namespace Commands {
111111
};
112112
listKnownAuthors.description = "List known authors as listed in .mailmap file.";
113113

114-
export const listAuthors: Command = function (...specs:string[]) {
114+
export const listAuthors: Command = function (...specs: string[]) {
115115
const cmd = "git shortlog -se " + specs.join(" ");
116116
console.log(cmd);
117117
const outputRegExp = /\d+\s+([^<]+)<([^>]+)>/;

0 commit comments

Comments
 (0)