Revert "style: lint"

This reverts commit 98f40d7d0b.
This commit is contained in:
Neko Ayaka
2026-08-26 20:13:10 +08:00
parent cfcfc513ef
commit 146b3da65a
1625 changed files with 75440 additions and 75453 deletions
+3 -3
View File
@@ -37,8 +37,8 @@ vi.mock('h3', () => ({
get = vi.fn()
},
serve: vi.fn(() => ({
close: serveMocks.closeCall,
serve: serveMocks.serveCall,
close: serveMocks.closeCall,
})),
}))
@@ -110,11 +110,11 @@ describe('createServer', async () => {
it('merges nested config updates instead of replacing sibling logger settings', async () => {
const server = createServer({
hostname: '127.0.0.1',
port: 6121,
logger: {
app: { level: LogLevelString.Log },
websocket: { format: Format.Pretty },
},
port: 6121,
})
server.updateConfig({
@@ -130,8 +130,8 @@ describe('createServer', async () => {
expect(serveMocks.setupAppCall).toHaveBeenCalledWith(expect.objectContaining({
logger: {
app: {
format: Format.Pretty,
level: LogLevelString.Log,
format: Format.Pretty,
},
websocket: {
format: Format.Pretty,