Revert "Pretter for each ts file"

This reverts commit 23674b2cfe.
This commit is contained in:
Pine Wu
2018-10-23 22:14:56 -07:00
parent e01af61527
commit b72fae94fa
55 changed files with 1477 additions and 1753 deletions

View File

@ -8,9 +8,10 @@ import * as vscode from 'vscode';
import { add } from './math';
export function activate(context: vscode.ExtensionContext) {
let disposable = vscode.commands.registerCommand('extension.helloWebpack', () => {
vscode.window.showInformationMessage(`41 + 1 = ${add(41, 1)}`);
});
context.subscriptions.push(disposable);
let disposable = vscode.commands.registerCommand('extension.helloWebpack', () => {
vscode.window.showInformationMessage(`41 + 1 = ${add(41, 1)}`);
});
context.subscriptions.push(disposable);
}

View File

@ -5,9 +5,9 @@
'use strict';
export function add(a: number, b: number): number {
return a + b;
return a + b;
}
export function sub(a: number, b: number): number {
return a - b;
return a - b;
}