Skip to content
Merged
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
5 changes: 5 additions & 0 deletions .changeset/migrate-logging-to-pino.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"nostream": patch
---

Migrate runtime logging to pino across adapters, services, workers, and controllers, and stabilize CI-related fixes for coverage and integration workflows after rebasing.
17 changes: 16 additions & 1 deletion biome.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,24 @@
"recommended": false,
"correctness": { "noUnusedVariables": "error" },
"style": { "useBlockStatements": "warn" },
"suspicious": { "noExplicitAny": "off" }
"suspicious": {
"noExplicitAny": "off",
"noConsole": "error"
}
}
},
"overrides": [
{
"includes": ["migrations/**", "src/clean-db.ts", "src/import-events.ts", "src/scripts/**", "test/**"],
"linter": {
"rules": {
"suspicious": {
"noConsole": "off"
}
}
}
}
],
"javascript": {
"formatter": {
"quoteStyle": "single",
Expand Down
Loading
Loading