general rules should apply to whole project (#159)

* general rules should apply to whole project

* Merge remote-tracking branch 'origin/main' into fix_eslint

* lint fixes under server package
This commit is contained in:
Olcan 2025-04-24 15:42:18 -07:00 committed by GitHub
parent 0510d06ecf
commit 133f39494e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 6 additions and 9 deletions

View file

@ -257,10 +257,7 @@ export class LSTool extends BaseTool<LSToolParams, ToolResult> {
// Create formatted content for LLM
const directoryContent = entries
.map((entry) => {
// More concise format for LLM
return `${entry.isDirectory ? '[DIR] ' : ''}${entry.name}`;
})
.map((entry) => `${entry.isDirectory ? '[DIR] ' : ''}${entry.name}`)
.join('\n');
return {