Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 24 additions & 1 deletion biome.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@
"!docs",
"!test/init-eval/templates",
"!dist-build",
"!!src/lib/custom-ca.ts"
"!!src/lib/custom-ca.ts",
// Vendored verbatim from the `xcode` package (Apache-2.0) with the
// child_process-dependent require stripped. Kept as-is, not linted.
"!src/lib/init/agent/framework/pbxWriter.vendor.mjs",
// Hand-maintained ambient type declaration for the untyped `xcode`
// package; mirrors upstream shapes, not subject to our style rules.
"!src/types/xcode.d.ts"
]
},
"javascript": {},
Expand All @@ -40,6 +46,23 @@
}
},
"overrides": [
{
// Faithful ports of the (previously server-side) deterministic Sentry
// docs navigation and Xcode pbxproj transforms. Kept structurally close
// to their source for reviewability, so the cognitive-complexity cap is
// relaxed here rather than restructuring proven logic.
"includes": [
"src/lib/init/docs/**/*.ts",
"src/lib/init/agent/framework/**/*.ts"
],
"linter": {
"rules": {
"complexity": {
"noExcessiveCognitiveComplexity": "off"
}
}
}
},
{
// The React-hook lint rules infer "this is a hook" from the
// `use*` naming convention. We have a couple of test helpers
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
},
"main": "./dist/index.cjs",
"devDependencies": {
"@anthropic-ai/claude-agent-sdk": "0.3.191",
"@anthropic-ai/sdk": "^0.39.0",
"@biomejs/biome": "2.3.8",
"@clack/prompts": "0.11.0",
"@hono/node-server": "^2.0.6",
"@mastra/client-js": "^1.26.0",
"@sentry/api": "^0.180.0",
"@sentry/core": "10.50.0",
"@sentry/node-core": "10.50.0",
Expand Down Expand Up @@ -55,6 +55,7 @@
"uuidv7": "^1.2.1",
"vitest": "^4.1.9",
"wrap-ansi": "^10.0.0",
"xcode": "^3.0.1",
"zod": "^3.25.76"
},
"exports": {
Expand Down
Loading