mirror of
https://github.com/basicmachines-co/basic-memory
synced 2026-06-21 13:47:35 +00:00
5365f971ef
Signed-off-by: phernandez <paul@basicmachines.co>
98 lines
2.0 KiB
JSON
98 lines
2.0 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.4.16/schema.json",
|
|
"assist": {
|
|
"actions": {
|
|
"source": {
|
|
"organizeImports": "on",
|
|
"useSortedAttributes": "on",
|
|
"useSortedKeys": "off"
|
|
}
|
|
},
|
|
"enabled": true
|
|
},
|
|
"files": {
|
|
"includes": [
|
|
"**",
|
|
"!**/node_modules",
|
|
"!**/dist",
|
|
"!**/bun.lock",
|
|
"!**/*.lock",
|
|
"!.claude"
|
|
]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "space",
|
|
"indentWidth": 2
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double",
|
|
"semicolons": "asNeeded"
|
|
}
|
|
},
|
|
"overrides": [
|
|
{
|
|
"includes": ["**/*.test.ts"],
|
|
"linter": {
|
|
"rules": {
|
|
"style": {
|
|
"noNonNullAssertion": "off"
|
|
},
|
|
"complexity": {
|
|
"noBannedTypes": "off"
|
|
},
|
|
"suspicious": {
|
|
"noExplicitAny": "off"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
],
|
|
"linter": {
|
|
"domains": {
|
|
"project": "none"
|
|
},
|
|
"enabled": true,
|
|
"rules": {
|
|
"correctness": {
|
|
"useYield": "warn",
|
|
"noUnusedVariables": {
|
|
"level": "warn",
|
|
"options": {
|
|
"ignoreRestSiblings": true
|
|
}
|
|
},
|
|
"noUnusedImports": "warn",
|
|
"useParseIntRadix": "off"
|
|
},
|
|
"recommended": true,
|
|
"style": {
|
|
"noDefaultExport": "off",
|
|
"noInferrableTypes": "error",
|
|
"noNonNullAssertion": "warn",
|
|
"noParameterAssign": "error",
|
|
"noUnusedTemplateLiteral": "error",
|
|
"noUselessElse": "error",
|
|
"useAsConstAssertion": "error",
|
|
"useDefaultParameterLast": "error",
|
|
"useEnumInitializers": "error",
|
|
"useNamingConvention": {
|
|
"level": "off",
|
|
"options": {
|
|
"strictCase": false
|
|
}
|
|
},
|
|
"useNumberNamespace": "error",
|
|
"useSelfClosingElements": "error",
|
|
"useSingleVarDeclarator": "error"
|
|
}
|
|
}
|
|
},
|
|
"vcs": {
|
|
"clientKind": "git",
|
|
"enabled": true,
|
|
"useIgnoreFile": true
|
|
}
|
|
}
|