Skip to content

Commit 587be99

Browse files
committed
Use 4 space tabs for *.ts files
1 parent ba83307 commit 587be99

File tree

4 files changed

+585
-585
lines changed

4 files changed

+585
-585
lines changed

src/debugAdapter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import { Logger } from "./logging";
88

99
export class NamedPipeDebugAdapter implements DebugAdapter {
1010
private static readonly TWO_CRLF = '\r\n\r\n';
11-
private static readonly HEADER_LINESEPARATOR = /\r?\n/; // allow for non-RFC 2822 conforming line separators
11+
private static readonly HEADER_LINESEPARATOR = /\r?\n/; // allow for non-RFC 2822 conforming line separators
1212
private static readonly HEADER_FIELDSEPARATOR = /: */;
1313

1414
private readonly _logger: Logger;

src/features/DebugSession.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ export class SpecifyScriptArgsFeature implements vscode.Disposable {
372372
}
373373

374374
interface IProcessItem extends vscode.QuickPickItem {
375-
pid: string; // payload for the QuickPick UI
375+
pid: string; // payload for the QuickPick UI
376376
}
377377

378378
interface IPSHostProcessInfo {
@@ -508,7 +508,7 @@ export class PickPSHostProcessFeature extends LanguageClientConsumer {
508508
}
509509

510510
interface IRunspaceItem extends vscode.QuickPickItem {
511-
id: string; // payload for the QuickPick UI
511+
id: string; // payload for the QuickPick UI
512512
}
513513

514514
interface IRunspace {

test/testRunner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import * as path from "path";
99
export function run(): Promise<void> {
1010
// Create the mocha test
1111
const mocha = new Mocha({
12-
ui: "tdd", // the TDD UI is being used in extension.test.ts (suite, test, etc.)
12+
ui: "tdd", // the TDD UI is being used in extension.test.ts (suite, test, etc.)
1313
useColors: !process.env.TF_BUILD, // colored output from test results
1414
reporter: "mocha-multi-reporters",
1515
timeout: 5000,

0 commit comments

Comments
 (0)