build: add biome formatter and linter

This commit is contained in:
2026-03-23 08:17:27 +05:30
parent 068db04355
commit 7a164c705c
21 changed files with 1620 additions and 510 deletions
+1 -1
View File
@@ -12,4 +12,4 @@
"@types/bun": "^1.3.10",
"@types/node": "^25.5.0"
}
}
}
+4 -3
View File
@@ -1,6 +1,7 @@
// Re-export open and close tools for project-level use via relative paths.
// For published package usage, change imports to "@username/opencode-multi-model".
import { openTool } from "../../src/tools/open";
import { closeTool } from "../../src/tools/close";
export { openTool as open, closeTool as close };
import { closeTool } from "../../src/tools/close";
import { openTool } from "../../src/tools/open";
export { closeTool as close, openTool as open };
+2 -4
View File
@@ -18,9 +18,7 @@
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"types": [
"bun-types"
]
"types": ["bun-types"]
},
"include": ["**/*.ts", "**/*.tsx"]
}
}