Skip to content

Commit 995d38f

Browse files
committed
Lint nits
1 parent bdd2027 commit 995d38f

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/commands/scan/fetch-create-org-full-scan.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export async function fetchCreateOrgFullScan(
2626
packagePaths: string[],
2727
orgSlug: string,
2828
config: FetchCreateOrgFullScanConfigs,
29-
options?: FetchCreateOrgFullScanOptions,
29+
options?: FetchCreateOrgFullScanOptions | undefined,
3030
): Promise<CResult<SocketSdkSuccessResult<'CreateOrgFullScan'>['data']>> {
3131
const {
3232
branchName,

src/shadow/npm/install.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export type ShadowNpmInstallOptions = SpawnOption & {
2525
}
2626

2727
export function shadowNpmInstall(
28-
options?: ShadowNpmInstallOptions,
28+
options?: ShadowNpmInstallOptions | undefined,
2929
): SpawnResult<string, Record<any, any> | undefined> {
3030
const {
3131
agentExecPath = getNpmBinPath(),

src/utils/config.test.mts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ import path from 'node:path'
22

33
import { beforeEach, describe, expect, it } from 'vitest'
44

5-
import { testPath } from '../../test/utils.mts'
65
import {
76
findSocketYmlSync,
87
overrideCachedConfig,
98
updateConfigValue,
109
} from './config.mts'
10+
import { testPath } from '../../test/utils.mts'
1111

1212
const fixtureBaseDir = path.join(testPath, 'fixtures/utils/config')
1313

0 commit comments

Comments
 (0)