diff --git a/.gitignore b/.gitignore index 4b4060f..69296e4 100644 --- a/.gitignore +++ b/.gitignore @@ -133,6 +133,7 @@ migrations !examples/**/migrations seeds !src/seeds +!examples/**/seeds examples/**/example.db tsconfig.vitest-temp.json diff --git a/biome.json b/biome.jsonc similarity index 72% rename from biome.json rename to biome.jsonc index 54e7621..2726479 100644 --- a/biome.json +++ b/biome.jsonc @@ -1,7 +1,12 @@ { "$schema": "./node_modules/@biomejs/biome/configuration_schema.json", "files": { - "include": ["src", "tests", "scripts", "examples", "*.ts"] + "ignore": [ + "examples/**/migrations", + "examples/**/seeds", + "package.json", + "tsconfig*.json" + ] }, "javascript": { "formatter": { @@ -25,5 +30,10 @@ "noExplicitAny": "warn" } } + }, + "vcs": { + "clientKind": "git", + "enabled": true, + "useIgnoreFile": true } }