Skip to content

Commit

Permalink
chore: extraneous dependency rules
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Mar 25, 2024
1 parent fbb8c4f commit 1365325
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/stubUx.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@
*/
/* eslint-disable @typescript-eslint/explicit-function-return-type */

// intentionally keep sinon out of dependencies since this is meant for test-time only
// eslint-disable-next-line import/no-extraneous-dependencies
import { SinonSandbox } from 'sinon';
import { SfCommand } from './sfCommand.js';
import { Spinner } from './ux/spinner.js';
Expand Down
2 changes: 1 addition & 1 deletion src/ux/prompts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import { setTimeout } from 'node:timers/promises';
import { SfError } from '@salesforce/core';
import { CancelablePromise } from '@inquirer/type';
import type { CancelablePromise } from '@inquirer/type';

export type PromptInputs<T> = {
/** text to display. Do not include a question mark */
Expand Down

0 comments on commit 1365325

Please sign in to comment.