diff --git a/.eslint-dictionary.json b/.eslint-dictionary.json index 0281e5f4f0..32ce6d122d 100644 --- a/.eslint-dictionary.json +++ b/.eslint-dictionary.json @@ -388,6 +388,7 @@ "syncable", "tablename", "tailwindcss", + "templategen", "testother", "testschemadeployer", "textract", diff --git a/packages/amplify-migration-e2e/src/gen1ResourceDetailsFetcher.ts b/packages/amplify-migration-e2e/src/gen1ResourceDetailsFetcher.ts index b1d9cbb77a..4909918333 100644 --- a/packages/amplify-migration-e2e/src/gen1ResourceDetailsFetcher.ts +++ b/packages/amplify-migration-e2e/src/gen1ResourceDetailsFetcher.ts @@ -11,6 +11,7 @@ async function getGen1AuthResourceDetails(projRoot: string) { const { gen1UserPoolId } = await assertUserPool(gen1Meta, gen1Region); const { gen1IdentityPoolId } = await assertIdentityPool(gen1Meta, gen1Region); const { gen1ClientIds } = await assertUserPoolClients(gen1Meta, gen1Region); + // eslint-disable-next-line @typescript-eslint/no-unused-vars const [gen1ClientIdWeb, gen1ClientId] = gen1ClientIds; const gen1ResourceIds = [gen1UserPoolId, gen1IdentityPoolId, gen1ClientIdWeb];