first commit

This commit is contained in:
Tim Bendt
2024-04-19 14:08:59 -06:00
commit cf50f37ede
11 changed files with 6722 additions and 0 deletions

31
biome.json Normal file
View File

@@ -0,0 +1,31 @@
{
"$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
"organizeImports": {
"enabled": false
},
"formatter": {
"enabled": true,
"formatWithErrors": true,
"indentStyle": "space"
},
"linter": {
"enabled": false,
"rules": {
"recommended": true
}
},
"vcs": {
"clientKind": "git",
"enabled": true,
"useIgnoreFile": true,
"defaultBranch": "main"
},
"files": {
"ignore": [
"./.configs/**",
"generated/**",
"tsconfig*.json",
"orval.config.ts"
]
}
}