summaryrefslogtreecommitdiffhomepage
path: root/github
diff options
context:
space:
mode:
authorKit Langton <[email protected]>2026-04-15 23:27:32 -0400
committerGitHub <[email protected]>2026-04-15 23:27:32 -0400
commit80f1f1b5b8535b6008af54621665738115346cde (patch)
treeb963eaa4fe01c79390b9058ed54081a91d5180a2 /github
parent343a564183d3c1aa3fc4f46896c2350bda2d2058 (diff)
downloadopencode-80f1f1b5b8535b6008af54621665738115346cde.tar.gz
opencode-80f1f1b5b8535b6008af54621665738115346cde.zip
feat: enable type-aware no-floating-promises rule, fix all 177 violations (#22741)
Diffstat (limited to 'github')
-rw-r--r--github/index.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/github/index.ts b/github/index.ts
index 4463aa200..51ee2a46a 100644
--- a/github/index.ts
+++ b/github/index.ts
@@ -513,7 +513,7 @@ async function subscribeSessionEvents() {
const decoder = new TextDecoder()
let text = ""
- ;(async () => {
+ void (async () => {
while (true) {
try {
const { done, value } = await reader.read()