From e79bda84f6fa90c68f661e7bd89a6ecd3f16a3f4 Mon Sep 17 00:00:00 2001 From: Christian Wyglendowski Date: Tue, 26 Nov 2024 16:34:11 -0500 Subject: [PATCH] Stop ignoring the forked Auth.js code --- .eslintrc.cjs | 9 +-------- tsconfig.json | 4 +--- 2 files changed, 2 insertions(+), 11 deletions(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index f5f8766..3a2f115 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -5,14 +5,7 @@ module.exports = { "eslint:recommended", "plugin:@typescript-eslint/recommended-type-checked", ], - ignorePatterns: [ - ".eslintrc.cjs", - "test", - "docs", - "dist", - // TODO: remove when we merge in our updated forked Auth.js code. - "src/server/oauth", - ], + ignorePatterns: [".eslintrc.cjs", "test", "docs", "dist"], parser: "@typescript-eslint/parser", parserOptions: { project: true, diff --git a/tsconfig.json b/tsconfig.json index 7671759..cf091d9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -26,8 +26,6 @@ "docs", "test", "test-router", - "test-nextjs", - // TODO: remove when we merge in our updated forked Auth.js code. - "src/server/oauth" + "test-nextjs" ] }