mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-18 11:06:19 +00:00
* feat: install fuse.js * feat: implement soul and basic memory system * fix: memory recall * fix: memory search pattern * feat: create soul.md file progressively * fix: soul vs core memory * fix: provide a soul read tool * feat: display soul on settings page * feat: refresh soul document * fix: chat mode avoids memory and soul tools * fix: date construction on memory cleanup * fix: atomicity of write operation * chore: upgrade biome
52 lines
962 B
JSON
52 lines
962 B
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.4.5/schema.json",
|
|
"vcs": {
|
|
"enabled": true,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": true
|
|
},
|
|
"files": {
|
|
"ignoreUnknown": false
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"correctness": {
|
|
"noUnusedImports": "error",
|
|
"noUnusedVariables": "error"
|
|
},
|
|
"nursery": {
|
|
"useSortedClasses": "error"
|
|
},
|
|
"complexity": {
|
|
"noExcessiveCognitiveComplexity": {
|
|
"level": "warn",
|
|
"options": {
|
|
"maxAllowedComplexity": 30
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "single",
|
|
"semicolons": "asNeeded"
|
|
}
|
|
},
|
|
"assist": {
|
|
"enabled": true,
|
|
"actions": {
|
|
"source": {
|
|
"organizeImports": "on"
|
|
}
|
|
}
|
|
}
|
|
}
|