mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-29 04:53:33 +01:00
enable @typescript-eslint/member-delimiter-style, https://github.com/microsoft/vscode/issues/140391
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user