Skip to content

Commit 77d4ce1

Browse files
committed
linting
1 parent 0acc535 commit 77d4ce1

File tree

3 files changed

+12
-11
lines changed

3 files changed

+12
-11
lines changed

libs/remix-ai-core/src/remix-mcp-server/handlers/DebuggingHandler.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
import { ICustomRemixApi } from '@remix-api';
66
import { IMCPToolResult } from '../../types/mcp';
77
import { BaseToolHandler } from '../registry/RemixToolRegistry';
8-
import {
9-
ToolCategory,
8+
import {
9+
ToolCategory,
1010
RemixToolDefinition,
1111
DebugSessionArgs,
1212
BreakpointArgs,
@@ -153,7 +153,7 @@ export class SetBreakpointHandler extends BaseToolHandler {
153153

154154
// TODO: Set breakpoint via Remix debugger API
155155
const breakpointId = `bp_${Date.now()}`;
156-
156+
157157
const result: BreakpointResult = {
158158
success: true,
159159
breakpointId,
@@ -220,7 +220,7 @@ export class DebugStepHandler extends BaseToolHandler {
220220
async execute(args: DebugStepArgs, plugin: Plugin): Promise<IMCPToolResult> {
221221
try {
222222
// TODO: Execute step via Remix debugger API
223-
223+
224224
const result: DebugStepResult = {
225225
success: true,
226226
sessionId: args.sessionId,
@@ -304,7 +304,7 @@ export class DebugWatchHandler extends BaseToolHandler {
304304
try {
305305
// TODO: Add watch via Remix debugger API
306306
const watchId = `watch_${Date.now()}`;
307-
307+
308308
const result = {
309309
success: true,
310310
watchId,
@@ -378,7 +378,7 @@ export class DebugEvaluateHandler extends BaseToolHandler {
378378
async execute(args: DebugEvaluateArgs, plugin: Plugin): Promise<IMCPToolResult> {
379379
try {
380380
// TODO: Evaluate expression via Remix debugger API
381-
381+
382382
const result = {
383383
success: true,
384384
sessionId: args.sessionId,
@@ -431,7 +431,7 @@ export class GetDebugCallStackHandler extends BaseToolHandler {
431431
async execute(args: DebugCallStackArgs, plugin: Plugin): Promise<IMCPToolResult> {
432432
try {
433433
// TODO: Get call stack via Remix debugger API
434-
434+
435435
const result = {
436436
success: true,
437437
sessionId: args.sessionId,
@@ -513,7 +513,7 @@ export class GetDebugVariablesHandler extends BaseToolHandler {
513513
async execute(args: DebugVariablesArgs, plugin: Plugin): Promise<IMCPToolResult> {
514514
try {
515515
// TODO: Get variables via Remix debugger API
516-
516+
517517
const result = {
518518
success: true,
519519
sessionId: args.sessionId,
@@ -583,7 +583,7 @@ export class StopDebugSessionHandler extends BaseToolHandler {
583583
async execute(args: { sessionId: string }, plugin: Plugin): Promise<IMCPToolResult> {
584584
try {
585585
// TODO: Stop debug session via Remix debugger API
586-
586+
587587
const result = {
588588
success: true,
589589
sessionId: args.sessionId,

libs/remix-ai-core/src/remix-mcp-server/handlers/DeploymentHandler.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable no-async-promise-executor */
12
/**
23
* Deployment and Contract Interaction Tool Handlers for Remix MCP Server
34
*/

libs/remix-ai-core/src/types/mcp.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,15 +81,15 @@ export interface IMCPServerCapabilities {
8181
prompts?: {
8282
listChanged?: boolean;
8383
};
84-
logging?: {};
84+
logging?: Record<string, any>;
8585
experimental?: Record<string, any>;
8686
}
8787

8888
export interface IMCPClientCapabilities {
8989
resources?: {
9090
subscribe?: boolean;
9191
};
92-
sampling?: {};
92+
sampling?: Record<string, any>;
9393
roots?: {
9494
listChanged?: boolean;
9595
};

0 commit comments

Comments
 (0)