Skip to content

Commit 7693cba

Browse files
committed
refactor: explicity nothing todo
1 parent 16f3399 commit 7693cba

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

src/extension.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,6 @@ export function activate(context: ExtensionContext) {
5454
context.subscriptions.push(currentFile);
5555
}
5656

57-
export function deactivate() {}
57+
export function deactivate() {
58+
// Nothing to do
59+
}

src/quickPicker.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ export enum QuickPickerAction {
2222
export class QuickPicker {
2323
private _pickItems: MenuQuickPickItem[] = [];
2424

25-
constructor() {}
25+
constructor() {
26+
// Nothing to do
27+
}
2628

2729
public async getActionId(
2830
currentStyle: string,

0 commit comments

Comments
 (0)