diff --git a/.gitignore b/.gitignore index 564dac4..55e76e1 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ node_modules build/ coverage +.vscode diff --git a/biome.json b/biome.json index 9d72b1d..766bc40 100644 --- a/biome.json +++ b/biome.json @@ -3,8 +3,10 @@ "organizeImports": { "enabled": true }, - "files": { - "ignore": ["coverage", "build"] + "vcs": { + "enabled": true, + "clientKind": "git", + "useIgnoreFile": true }, "linter": { "enabled": true, diff --git a/src/index.ts b/src/index.ts index 3add05a..9bcf964 100644 --- a/src/index.ts +++ b/src/index.ts @@ -16,7 +16,7 @@ interface Cond { (pairs: Pairs, options?: F): T | undefined; >( pairs: Pairs, - options?: { default: F1 } + options?: { default: F1 }, ): F1 extends Value ? T1 : T1 | undefined; (pairs: Pairs, options?: Options): T2 | undefined; }