- engines.node: >=24.15.0 across all 23 package.json (root + 8 workspace + studio + web + pkg + vscode-extension + 11 SF extension manifests) - CI workflows pinned to node-version: '24.15' (16 sites) - Dockerfile -> node:24.15-slim - .nvmrc / .node-version -> 24.15.0 - Refactored worktree-cli.ts and headless-query.ts to use import.meta.filename instead of fileURLToPath(import.meta.url) - exec.ts simplified with AbortSignal.any + spawn signal/killSignal - Picks up Crush's biome.json + AGENTS.md doc cleanup in same pass Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
59 lines
1 KiB
JSON
59 lines
1 KiB
JSON
{
|
|
"$schema": "https://biomejs.dev/schemas/2.4.13/schema.json",
|
|
"vcs": {
|
|
"enabled": true,
|
|
"clientKind": "git",
|
|
"useIgnoreFile": true
|
|
},
|
|
"files": {
|
|
"includes": [
|
|
"**",
|
|
"!!**/dist",
|
|
"!!**/dist-test",
|
|
"!!**/rust-engine/npm",
|
|
"!!src/resources/skills/create-sf-extension/templates/**"
|
|
]
|
|
},
|
|
"formatter": {
|
|
"enabled": true,
|
|
"indentStyle": "tab"
|
|
},
|
|
"linter": {
|
|
"enabled": true,
|
|
"rules": {
|
|
"recommended": true,
|
|
"correctness": {
|
|
"noUnreachable": "off"
|
|
},
|
|
"style": {
|
|
"noNonNullAssertion": "off",
|
|
"useTemplate": "off"
|
|
},
|
|
"suspicious": {
|
|
"noAssignInExpressions": "off",
|
|
"noControlCharactersInRegex": "off",
|
|
"noDuplicateTestHooks": "off",
|
|
"noExplicitAny": "off",
|
|
"noImplicitAnyLet": "off",
|
|
"useIterableCallbackReturn": "off"
|
|
},
|
|
"complexity": {
|
|
"useLiteralKeys": "off",
|
|
"useOptionalChain": "off"
|
|
}
|
|
}
|
|
},
|
|
"javascript": {
|
|
"formatter": {
|
|
"quoteStyle": "double"
|
|
}
|
|
},
|
|
"assist": {
|
|
"enabled": true,
|
|
"actions": {
|
|
"source": {
|
|
"organizeImports": "on"
|
|
}
|
|
}
|
|
}
|
|
}
|