We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 16f3399 commit 7693cbaCopy full SHA for 7693cba
src/extension.ts
@@ -54,4 +54,6 @@ export function activate(context: ExtensionContext) {
54
context.subscriptions.push(currentFile);
55
}
56
57
-export function deactivate() {}
+export function deactivate() {
58
+ // Nothing to do
59
+}
src/quickPicker.ts
@@ -22,7 +22,9 @@ export enum QuickPickerAction {
22
export class QuickPicker {
23
private _pickItems: MenuQuickPickItem[] = [];
24
25
- constructor() {}
+ constructor() {
26
27
+ }
28
29
public async getActionId(
30
currentStyle: string,
0 commit comments