Skip to content

Commit

Permalink
formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
filip131311 committed Feb 19, 2025
1 parent e95bb7f commit ce0b835
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 18 deletions.
10 changes: 5 additions & 5 deletions packages/vscode-extension/src/debugging/CDPSession.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import WebSocket from "ws";
import { Logger } from "../Logger";
import { SourceMapsRegistry } from "./SourceMapsRegistry";
import { BreakpointsController } from "./BreakpointsController";
import { OutputEvent, Source, StackFrame, StoppedEvent, Variable } from "@vscode/debugadapter";
import { OutputEvent, Source, StackFrame, Variable } from "@vscode/debugadapter";
import { DebugProtocol } from "@vscode/debugprotocol";
import { Cdp } from "vscode-js-debug/out/cdp/index";
import { AnyObject } from "vscode-js-debug/out/adapter/objectPreview/betterTypes";
import { formatMessage } from "vscode-js-debug/out/adapter/messageFormat";
Expand All @@ -11,9 +9,11 @@ import {
previewAsObject,
previewRemoteObject,
} from "vscode-js-debug/out/adapter/objectPreview";
import { Logger } from "../Logger";
import { SourceMapsRegistry } from "./SourceMapsRegistry";
import { BreakpointsController } from "./BreakpointsController";
import { VariableStore } from "./variableStore";
import { CDPDebuggerScope, CDPRemoteObject } from "./cdp";
import { DebugProtocol } from "@vscode/debugprotocol";

type ResolveType<T = unknown> = (result: T) => void;
type RejectType = (error: unknown) => void;
Expand Down
14 changes: 1 addition & 13 deletions packages/vscode-extension/src/project/project.ts
Original file line number Diff line number Diff line change
@@ -1,18 +1,6 @@
import { EventEmitter } from "stream";
import os from "os";
import {
env,
Disposable,
commands,
workspace,
window,
Selection,
Range,
DebugSessionCustomEvent,
Uri,
Position,
ViewColumn,
} from "vscode";
import { env, Disposable, commands, workspace, window, DebugSessionCustomEvent } from "vscode";
import _ from "lodash";
import { minimatch } from "minimatch";
import { isEqual } from "lodash";
Expand Down

0 comments on commit ce0b835

Please sign in to comment.