chore(gates): regenerate catalogs and keep repository gates green

Config catalog, module graph, event producer-consumer tables, and
third-party notices regenerate over the webworker surface; the oxlint
rule fingerprint and the ui-renderer NodeNext import face follow.
This commit is contained in:
imccyu
2026-08-21 20:35:33 +08:00
parent 50bfb00985
commit 3cc90952cc
14 changed files with 59 additions and 15 deletions
+15
View File
@@ -316,6 +316,21 @@
"rules": {
"@stylistic/quotes": "off"
}
},
{
"files": [
"packages/experimental/webworker-runtime/src/node/**/*.ts",
"packages/experimental/webworker-runtime/src/storage/memory.ts",
"packages/experimental/webworker-runtime/src/module-system/module-loader.ts",
"packages/experimental/webworker-runtime/src/transport/synthetic-http.ts"
],
"rules": {
"typescript/require-await": "off", // Async faces Node and Cordis define (fs promises, the module seam) reject rather than throw; the VFS beneath them never awaits.
"typescript/no-extraneous-class": "off" // Node constructs these (`new Script()`, `new Worker()`), so a stub that refuses must still be a class.
},
"plugins": [
"typescript"
]
}
]
}