Skip to content

Commit 4fb9d22

Browse files
committed
style: reformat for CI linting check
1 parent 44ad6c2 commit 4fb9d22

File tree

2 files changed

+2
-10
lines changed

2 files changed

+2
-10
lines changed

src/commands/blog-export/download.ts

+1-5
Original file line numberDiff line numberDiff line change
@@ -116,10 +116,6 @@ export class DownloadExportCommandHandler extends TreeViewCommandHandler<BlogExp
116116
}
117117

118118
private setIsDownloading(value: boolean) {
119-
return commands.executeCommand(
120-
'setContext',
121-
`${globalCtx.extName}.blog-export.downloading`,
122-
value || undefined
123-
)
119+
return commands.executeCommand('setContext', `${globalCtx.extName}.blog-export.downloading`, value || undefined)
124120
}
125121
}

src/services/ings-list-webview-provider.ts

+1-5
Original file line numberDiff line numberDiff line change
@@ -166,11 +166,7 @@ export class IngsListWebviewProvider implements WebviewViewProvider {
166166

167167
private async setPageIndex(value: number) {
168168
await commands
169-
.executeCommand(
170-
'setContext',
171-
`${globalCtx.extName}.ingsList.pageIndex`,
172-
value > 0 ? value : undefined
173-
)
169+
.executeCommand('setContext', `${globalCtx.extName}.ingsList.pageIndex`, value > 0 ? value : undefined)
174170
.then(undefined, () => undefined)
175171
this._pageIndex = value
176172
}

0 commit comments

Comments
 (0)