chore: better Prettier config for easier reviews

This commit is contained in:
2023-10-23 23:33:39 +02:00
parent a8781724d4
commit 71ea41695f
209 changed files with 4093 additions and 4114 deletions

View File

@ -1,32 +1,32 @@
import type { Handler } from '../../handler'
import { guildExample, guildExample2 } from '../guild'
import type { Handler } from "../../handler"
import { guildExample, guildExample2 } from "../guild"
export const getGuildsPublicEmptyHandler: Handler = {
method: 'GET',
url: '/guilds/public',
method: "GET",
url: "/guilds/public",
response: {
statusCode: 200,
body: []
}
body: [],
},
}
export const getGuildsPublicHandler: Handler = {
method: 'GET',
url: '/guilds/public',
method: "GET",
url: "/guilds/public",
response: {
statusCode: 200,
body: [
{ ...guildExample, membersCount: 1 },
{ ...guildExample2, membersCount: 1 }
]
}
{ ...guildExample2, membersCount: 1 },
],
},
}
export const getGuildsPublicSearchHandler: Handler = {
method: 'GET',
url: '/guilds/public',
method: "GET",
url: "/guilds/public",
response: {
statusCode: 200,
body: [{ ...guildExample2, membersCount: 1 }]
}
body: [{ ...guildExample2, membersCount: 1 }],
},
}