chore: prettier

This commit is contained in:
DIYgod 2023-04-18 17:20:24 +01:00
parent d2b50d163d
commit ff88bf13da
No known key found for this signature in database
5 changed files with 7 additions and 2 deletions

1
.gitignore vendored
View File

@ -9,6 +9,7 @@ dist
generated/
test-results/
tsconfig.tsbuildinfo
.eslintcache
# IDE Specific
.idea

View File

@ -1,6 +1,7 @@
import { PlaywrightTestConfig, devices } from "@playwright/test"
import path from "path"
import { PlaywrightTestConfig, devices } from "@playwright/test"
// Reference: https://playwright.dev/docs/test-configuration
const config: PlaywrightTestConfig = {
timeout: 30 * 1000,

View File

@ -1,8 +1,9 @@
import { DehydratedState } from "@tanstack/react-query"
import { NextPage } from "next"
import { AppProps } from "next/app"
import { ReactElement, ReactNode } from "react"
import { DehydratedState } from "@tanstack/react-query"
export type AppPropsWithLayout = AppProps<{
dehydratedState: DehydratedState
}> & {

View File

@ -1,4 +1,5 @@
import { defineConfig } from "unocss"
import presetIcons from "@unocss/preset-icons"
export default defineConfig({

View File

@ -1,5 +1,6 @@
import path from "path"
import { defineConfig } from "vitest/config"
import react from "@vitejs/plugin-react"
export default defineConfig({