Disable broken lints (#7961)

This commit is contained in:
Michał Wawrzyniec Urbańczyk 2023-10-03 19:30:24 +02:00 committed by GitHub
parent 3222e5af62
commit 8d8c0b62d6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 1 deletions

View File

@ -1,4 +1,4 @@
import type { Uuid } from 'shared/languageServerTypes'
import type { Uuid } from '../languageServerTypes'
export type SuggestionId = number

View File

@ -101,6 +101,8 @@ export class Server {
reject(err)
}
if (httpServer) {
// eslint-disable-next-line @typescript-eslint/no-unsafe-member-access,
// @typescript-eslint/no-unsafe-call
ydocServer.createGatewayServer(httpServer)
}
logger.log(`Server started on port ${this.config.port}.`)