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,17 +1,17 @@
import type { Handler } from '../../handler'
import { userExample, userSettingsExample } from '../user'
import type { Handler } from "../../handler"
import { userExample, userSettingsExample } from "../user"
export const getUserByIdHandler: Handler = {
method: 'GET',
method: "GET",
url: `/users/${userExample.id}`,
response: {
statusCode: 200,
body: {
user: {
...userExample,
settings: userSettingsExample
settings: userSettingsExample,
},
guilds: []
}
}
guilds: [],
},
},
}