Skip to content

Commit

Permalink
biome vcs integration.
Browse files Browse the repository at this point in the history
  • Loading branch information
igalklebanov committed Feb 5, 2025
1 parent 54a298a commit 65e6469
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ migrations
!examples/**/migrations
seeds
!src/seeds
!examples/**/seeds
examples/**/example.db

tsconfig.vitest-temp.json
Expand Down
12 changes: 11 additions & 1 deletion biome.json → biome.jsonc
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -25,5 +30,10 @@
"noExplicitAny": "warn"
}
}
},
"vcs": {
"clientKind": "git",
"enabled": true,
"useIgnoreFile": true
}
}

0 comments on commit 65e6469

Please sign in to comment.