Skip to content

Commit

Permalink
feat: disable no console in cli
Browse files Browse the repository at this point in the history
  • Loading branch information
himanshu-dixit committed Dec 9, 2024
1 parent aa0db07 commit 7629399
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions js/src/cli/add.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-console */
import chalk from "chalk";
import { Command } from "commander";
import { Composio } from "../sdk";
Expand Down
1 change: 1 addition & 0 deletions js/src/cli/apps.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-console */
import chalk from "chalk";
import { Command } from "commander";

Expand Down
1 change: 1 addition & 0 deletions js/src/cli/connections.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-console */
import chalk from "chalk";
import { Command } from "commander";

Expand Down
1 change: 1 addition & 0 deletions js/src/cli/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-console */
// Node Imports
import { Command } from "commander";
import chalk from "chalk";
Expand Down
1 change: 1 addition & 0 deletions js/src/cli/integrations.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-console */
import chalk from "chalk";
import { Command } from "commander";

Expand Down
1 change: 1 addition & 0 deletions js/src/cli/login.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-console */
import chalk from "chalk";
import { Command } from "commander";
import inquirer from "inquirer";
Expand Down
1 change: 1 addition & 0 deletions js/src/cli/logout.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-console */
import chalk from "chalk";
import { Command } from "commander";
import { setCliConfig } from "../sdk/utils/cli";
Expand Down
1 change: 1 addition & 0 deletions js/src/cli/triggers.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-console */
import chalk from "chalk";
import { Command } from "commander";

Expand Down
1 change: 1 addition & 0 deletions js/src/cli/whoami.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
/* eslint-disable no-console */
import chalk from "chalk";
import { Command } from "commander";
import { getSDKConfig } from "../sdk/utils/config";
Expand Down

0 comments on commit 7629399

Please sign in to comment.