From e3b3d83760202783712d28bedc9bb1c5bea450d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Erik=20Mu=CC=88ller?= Date: Wed, 6 Dec 2023 10:08:41 +0100 Subject: [PATCH] fix formatting --- .gitignore | 1 + biome.json | 6 ++++-- src/index.ts | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) 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; }