32 lines
562 B
JSON
32 lines
562 B
JSON
{
|
|
"$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"
|
|
]
|
|
}
|
|
}
|