Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/oxlint/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@oxlint/plugins": "^1.72.0"
"@oxlint/plugins": "^1.73.0"
},
"devDependencies": {
"@types/node": "catalog:",
Expand Down
6 changes: 4 additions & 2 deletions packages/vitest/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,11 @@ function render(result: SomeResult, stringify: Stringify): string {
if (isOk(result)) return `Ok(${stringify(result.value)})`;
if (isErr(result)) return `Err(${stringify(result.error)})`;
if (isDefect(result)) return `Defect(${stringify(result.cause)})`;
/* v8 ignore next -- unreachable: `settle` only calls `render` on a canonical
Result, which is always Ok/Err/Defect; kept for return-exhaustiveness. */
// Unreachable: `settle` only calls `render` on a canonical Result, which is
// always Ok/Err/Defect; kept for return-exhaustiveness.
/* v8 ignore start */
return stringify(result);
/* v8 ignore stop */
}

// The "payload" of a TaggedError: its own enumerable properties minus the
Expand Down
Loading
Loading