-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathtypes.mts
More file actions
33 lines (32 loc) · 912 Bytes
/
Copy pathtypes.mts
File metadata and controls
33 lines (32 loc) · 912 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import type { OutputKind } from '../../types.mts'
import type { PURL_Type } from '../../util/ecosystem/types.mts'
import type { RangeStyle } from '../../util/semver.mts'
import type { SpinnerInstance } from '@socketsecurity/lib-stable/spinner/types'
export type FixConfig = {
all: boolean
applyFixes: boolean
autopilot: boolean
coanaVersion: string | undefined
cwd: string
debug: boolean
disableExternalToolChecks: boolean
disableMajorUpdates: boolean
ecosystems: PURL_Type[]
exclude: string[]
excludePaths: string[]
ghsas: string[]
include: string[]
minimumReleaseAge: string
minSatisfying: boolean
orgSlug: string
outputFile: string
outputKind: OutputKind
packageManagers: string[]
prCheck: boolean
prLimit: number
rangeStyle: RangeStyle
showAffectedDirectDependencies: boolean
silence: boolean
spinner: SpinnerInstance | undefined
unknownFlags: string[]
}