Skip to content

Commit

Permalink
fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
erikmueller committed Dec 7, 2023
1 parent 7493e1d commit e3b3d83
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
node_modules
build/
coverage
.vscode
6 changes: 4 additions & 2 deletions biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@
"organizeImports": {
"enabled": true
},
"files": {
"ignore": ["coverage", "build"]
"vcs": {
"enabled": true,
"clientKind": "git",
"useIgnoreFile": true
},
"linter": {
"enabled": true,
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ interface Cond {
<T, F extends undefined>(pairs: Pairs<T>, options?: F): T | undefined;
<T1, F1 extends Value<T1>>(
pairs: Pairs<T1>,
options?: { default: F1 }
options?: { default: F1 },
): F1 extends Value<T1> ? T1 : T1 | undefined;
<T2>(pairs: Pairs<T2>, options?: Options<T2>): T2 | undefined;
}
Expand Down

0 comments on commit e3b3d83

Please sign in to comment.