From 587765dc4d1000f59b2fd0611cf58f28ca343b3c Mon Sep 17 00:00:00 2001 From: Nate Moore Date: Wed, 31 Jan 2024 15:17:00 -0600 Subject: [PATCH] chore: disable console linting for CLI --- .eslintrc.cjs | 6 ++++++ packages/db/src/core/cli/commands/push/index.ts | 4 +++- packages/db/src/core/cli/commands/shell/index.ts | 1 - packages/db/src/core/cli/index.ts | 2 -- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/.eslintrc.cjs b/.eslintrc.cjs index e2a11d03ea..c14bc0cb4c 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -117,6 +117,12 @@ module.exports = { 'no-console': 'off', }, }, + { + files: ['packages/db/**/cli/**/*.ts'], + rules: { + 'no-console': 'off', + }, + }, { files: ['packages/astro/src/core/errors/errors-data.ts'], rules: { diff --git a/packages/db/src/core/cli/commands/push/index.ts b/packages/db/src/core/cli/commands/push/index.ts index 34fb97c9e8..074befa3f5 100644 --- a/packages/db/src/core/cli/commands/push/index.ts +++ b/packages/db/src/core/cli/commands/push/index.ts @@ -1,4 +1,3 @@ -/* eslint-disable no-console */ import { createClient, type InStatement } from '@libsql/client'; import type { AstroConfig } from 'astro'; import deepDiff from 'deep-diff'; @@ -206,5 +205,8 @@ async function prepareMigrateQuery({ }), body: JSON.stringify(requestBody), }); + if (result.status >= 400) { + throw new Error(await result.text()) + } return await result.json(); } diff --git a/packages/db/src/core/cli/commands/shell/index.ts b/packages/db/src/core/cli/commands/shell/index.ts index 6899f70d05..9d97e5ec53 100644 --- a/packages/db/src/core/cli/commands/shell/index.ts +++ b/packages/db/src/core/cli/commands/shell/index.ts @@ -9,7 +9,6 @@ export async function cmd({ flags }: { config: AstroConfig; flags: Arguments }) const query = flags.query; const appToken = flags.token ?? getAstroStudioEnv().ASTRO_STUDIO_APP_TOKEN; if (!appToken) { - // eslint-disable-next-line no-console console.error(appTokenError); process.exit(1); } diff --git a/packages/db/src/core/cli/index.ts b/packages/db/src/core/cli/index.ts index b902953cb2..b41b7696db 100644 --- a/packages/db/src/core/cli/index.ts +++ b/packages/db/src/core/cli/index.ts @@ -23,12 +23,10 @@ export async function cli({ flags, config }: { flags: Arguments; config: AstroCo } default: { if (command == null) { - // eslint-disable-next-line no-console console.error(`No command provided. ${showHelp()}`); } else { - // eslint-disable-next-line no-console console.error(`Unknown command: ${command} ${showHelp()}`);