Skip to content

Commit fabb450

Browse files
barslevjdalton
authored andcommitted
Fix linting issues
1 parent 4dc2236 commit fabb450

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/commands/fix/cmd-fix.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -190,17 +190,17 @@ async function run(
190190

191191
const {
192192
autopilot,
193+
computeFixesOnly,
193194
json,
194195
limit,
195196
markdown,
196197
maxSatisfying,
198+
outputFile,
197199
prCheck,
198200
rangeStyle,
199201
// We patched in this feature with `npx custompatch meow` at
200202
// socket-cli/patches/meow#13.2.0.patch.
201203
unknownFlags = [],
202-
outputFile,
203-
computeFixesOnly,
204204
} = cli.flags as {
205205
autopilot: boolean
206206
limit: number

src/commands/fix/coana-fix.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,13 +39,13 @@ export async function coanaFix(
3939
): Promise<CResult<{ fixed: boolean }>> {
4040
const {
4141
autopilot,
42+
computeFixesOnly,
4243
cwd,
4344
ghsas,
4445
limit,
4546
orgSlug,
46-
spinner,
47-
computeFixesOnly,
4847
outputFile,
48+
spinner,
4949
} = fixConfig
5050

5151
const fixEnv = await getFixEnv()

src/commands/fix/handle-fix.mts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,18 +89,18 @@ export async function convertIdsToGhsas(ids: string[]): Promise<string[]> {
8989

9090
export async function handleFix({
9191
autopilot,
92+
computeFixesOnly,
9293
cwd,
9394
ghsas,
9495
limit,
9596
minSatisfying,
9697
orgSlug,
98+
outputFile,
9799
outputKind,
98100
prCheck,
99101
rangeStyle,
100102
spinner,
101103
unknownFlags,
102-
computeFixesOnly,
103-
outputFile,
104104
}: HandleFixConfig) {
105105
await outputFixResult(
106106
await coanaFix({

0 commit comments

Comments
 (0)