Total Complexity | 2 |
Complexity/F | 1 |
Lines of Code | 17 |
Function Count | 2 |
Duplicated Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | import * as vscode from 'vscode'; |
||
2 | import prettify from './commands/prettify'; |
||
3 | |||
4 | export const MESSAGES = { |
||
5 | 'ACTIVATION' : 'Congratulations, your extension "json-logs" is now active!' |
||
6 | }; |
||
7 | |||
8 | export function activate(context: vscode.ExtensionContext) { |
||
9 | console.log(MESSAGES.ACTIVATION); |
||
10 | |||
11 | const disposable = vscode.commands.registerCommand('json-logs.prettify', prettify); |
||
12 | |||
13 | context.subscriptions.push(disposable); |
||
14 | } |
||
15 | |||
16 | export function deactivate() {} |
||
17 |