enable @typescript-eslint/member-delimiter-style, https://github.com/microsoft/vscode/issues/140391

This commit is contained in:
Johannes Rieken
2022-02-02 14:34:41 +01:00
parent 5abc4e0071
commit 4a130c40ed
954 changed files with 3017 additions and 3016 deletions

View File

@@ -217,11 +217,11 @@ export function createExtHostComments(mainContext: IMainContext, commands: ExtHo
}
}
type CommentThreadModification = Partial<{
range: vscode.Range,
label: string | undefined,
contextValue: string | undefined,
comments: vscode.Comment[],
collapsibleState: vscode.CommentThreadCollapsibleState
range: vscode.Range;
label: string | undefined;
contextValue: string | undefined;
comments: vscode.Comment[];
collapsibleState: vscode.CommentThreadCollapsibleState;
canReply: boolean;
}>;
@@ -622,7 +622,7 @@ export function createExtHostComments(mainContext: IMainContext, commands: ExtHo
checkProposedApiEnabled(thread.extensionDescription, 'commentTimestamp');
}
let timestamp: { $mid: MarshalledId.Date, source: any } | undefined;
let timestamp: { $mid: MarshalledId.Date; source: any } | undefined;
if (vscodeComment.timestamp) {
timestamp = {
source: vscodeComment.timestamp,