v1: delete old repo, initalize monorepo structure, config, database, and api packages basic setup
This commit is contained in:
56
packages/biome-config/biome.json
Normal file
56
packages/biome-config/biome.json
Normal file
@@ -0,0 +1,56 @@
|
||||
{
|
||||
"$schema": "https://biomejs.dev/schemas/2.2.5/schema.json",
|
||||
"root": false,
|
||||
"vcs": {
|
||||
"enabled": false,
|
||||
"clientKind": "git",
|
||||
"useIgnoreFile": false
|
||||
},
|
||||
"files": {
|
||||
"ignoreUnknown": false
|
||||
},
|
||||
"formatter": {
|
||||
"enabled": true,
|
||||
"indentStyle": "space",
|
||||
"lineWidth": 100
|
||||
},
|
||||
"linter": {
|
||||
"enabled": true,
|
||||
"rules": {
|
||||
"recommended": true
|
||||
}
|
||||
},
|
||||
"json": {
|
||||
"parser": {
|
||||
"allowTrailingCommas": true,
|
||||
"allowComments": true
|
||||
},
|
||||
"formatter": {
|
||||
"trailingCommas": "none"
|
||||
}
|
||||
},
|
||||
"javascript": {
|
||||
"formatter": {
|
||||
"quoteStyle": "single",
|
||||
"jsxQuoteStyle": "single",
|
||||
"indentStyle": "space",
|
||||
"lineWidth": 100,
|
||||
"operatorLinebreak": "before",
|
||||
"trailingCommas": "es5"
|
||||
},
|
||||
"linter": {
|
||||
"enabled": true
|
||||
}
|
||||
},
|
||||
"css": {
|
||||
"formatter": { "enabled": true, "indentStyle": "space" }
|
||||
},
|
||||
"assist": {
|
||||
"enabled": true,
|
||||
"actions": {
|
||||
"source": {
|
||||
"organizeImports": "on"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
5
packages/biome-config/package.json
Normal file
5
packages/biome-config/package.json
Normal file
@@ -0,0 +1,5 @@
|
||||
{
|
||||
"name": "@concord/biome-config",
|
||||
"version": "0.1.0",
|
||||
"private": true
|
||||
}
|
||||
Reference in New Issue
Block a user