mirror of
https://github.com/claude-code-best/claude-code.git
synced 2026-06-19 06:45:50 +00:00
style: 完成所有文件的lint
This commit is contained in:
@@ -74,7 +74,7 @@ describe('LSPServerManager closeAllFiles', () => {
|
||||
// didClose should have been sent for both files
|
||||
expect(sendNotificationMock).toHaveBeenCalledTimes(2)
|
||||
const calls = sendNotificationMock.mock.calls.map((c: any[]) => c)
|
||||
const uris = calls.map((c) => (c[1] as any)?.textDocument?.uri as string)
|
||||
const uris = calls.map(c => (c[1] as any)?.textDocument?.uri as string)
|
||||
expect(uris).toEqual(
|
||||
expect.arrayContaining([
|
||||
expect.stringContaining('a.ts'),
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// Auto-generated stub — replace with real implementation
|
||||
export type LspServerConfig = any;
|
||||
export type ScopedLspServerConfig = any;
|
||||
export type LspServerState = any;
|
||||
export type LspServerConfig = any
|
||||
export type ScopedLspServerConfig = any
|
||||
export type LspServerState = any
|
||||
|
||||
Reference in New Issue
Block a user