Add lint comment

This commit is contained in:
Marshall Polaris 2022-06-28 13:18:23 -07:00
parent 17f819e155
commit 7ba014f682

View File

@ -47,6 +47,7 @@ export type Period = 'daily' | 'weekly' | 'monthly' | 'allTime'
export const auth = getAuth(app)
export async function getUser(userId: string) {
/* eslint-disable-next-line @typescript-eslint/no-non-null-assertion */
return (await getDoc(doc(users, userId))).data()!
}