mirror of
https://github.com/browseros-ai/BrowserOS.git
synced 2026-05-21 21:05:09 +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
63 lines
1.1 KiB
JSON
63 lines
1.1 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.4.5/schema.json",
|
|
"root": false,
|
|
"extends": "//",
|
|
"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",
|
|
"noPrivateImports": {
|
|
"level": "error",
|
|
"options": {
|
|
"defaultVisibility": "package"
|
|
}
|
|
}
|
|
},
|
|
"suspicious": {
|
|
"noConsole": "error"
|
|
},
|
|
"style": {
|
|
"noProcessEnv": "error"
|
|
},
|
|
"nursery": {
|
|
"useSortedClasses": "error"
|
|
}
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "single",
|
|
"semicolons": "asNeeded"
|
|
}
|
|
},
|
|
"css": {
|
|
"parser": {
|
|
"tailwindDirectives": true
|
|
}
|
|
},
|
|
"assist": {
|
|
"enabled": true,
|
|
"actions": {
|
|
"source": {
|
|
"organizeImports": "on"
|
|
}
|
|
}
|
|
}
|
|
}
|