Skip to content

Instantly share code, notes, and snippets.

@beerose
Last active February 5, 2019 19:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save beerose/5ad9ed82d6b82e390c6db789bfb33c45 to your computer and use it in GitHub Desktop.
Save beerose/5ad9ed82d6b82e390c6db789bfb33c45 to your computer and use it in GitHub Desktop.
'use strict';
import * as vscode from 'vscode';
import { purifyLogs } from './purifyLogs';
export function activate(context: vscode.ExtensionContext) {
const disposable = vscode.commands.registerCommand(
'extension.noProfanity',
purifyLogs
);
context.subscriptions.push(disposable);
}
export function deactivate() {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment