From fe829b0c4c1343f91f1d63dd1a45d349d809b2d6 Mon Sep 17 00:00:00 2001 From: Marc Mintel Date: Wed, 11 Feb 2026 12:09:00 +0100 Subject: [PATCH] chore: ignore next-env.d.ts in prettier to prevent flapping --- .prettierignore | 11 +++++++++++ next-env.d.ts | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) create mode 100644 .prettierignore diff --git a/.prettierignore b/.prettierignore new file mode 100644 index 00000000..c34ae0a9 --- /dev/null +++ b/.prettierignore @@ -0,0 +1,11 @@ +# Ignore Next.js auto-generated environment file +# It often uses different quote styles than our project config +next-env.d.ts + +# Ignore build output +.next +dist +out + +# Ignore other potentially generated files +pnpm-lock.yaml diff --git a/next-env.d.ts b/next-env.d.ts index 1511519d..9edff1c7 100644 --- a/next-env.d.ts +++ b/next-env.d.ts @@ -1,6 +1,6 @@ /// /// -import './.next/types/routes.d.ts'; +import "./.next/types/routes.d.ts"; // NOTE: This file should not be edited // see https://nextjs.org/docs/app/api-reference/config/typescript for more information.