Skip to content

Commit 1fcc518

Browse files
committed
fix: lints
1 parent 10fb767 commit 1fcc518

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/bin/cli.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ if (filesIndex !== -1 && filesIndex < args.length - 1) {
3232
}
3333
fileArgs.push(args[i])
3434
}
35-
35+
3636
// Support both comma-separated and space-separated file paths
37-
customFiles = fileArgs.flatMap(arg =>
37+
customFiles = fileArgs.flatMap(arg =>
3838
arg.includes(',') ? arg.split(',').map(f => f.trim()) : [arg.trim()]
3939
).filter(f => f.length > 0)
4040
}

src/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export class MCPFiles {
2121
// If custom files are specified, use them instead of automatic discovery
2222
if (this.customFiles && this.customFiles.length > 0) {
2323
const mcpFilesPathsData = await this.mcpConfigService.parseCustomFiles(this.customFiles)
24-
24+
2525
// Process each group to add server status information
2626
for (const groupName of Object.keys(mcpFilesPathsData)) {
2727
const group = mcpFilesPathsData[groupName]

src/services/mcp-config-service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ export class MCPConfigService {
273273
} catch (error) {
274274
// File does not exist or is not accessible
275275
this.debug(`Skipping file ${absolutePath}: ${error instanceof Error ? error.message : 'Unknown error'}`)
276-
276+
277277
// Still add to paths with parsable=false to show user it was attempted
278278
mcpFilesPathsData.custom.paths.push({
279279
filePath: absolutePath,

0 commit comments

Comments
 (0)