Fix lint errors: remove unused imports, fix floating promises, clean up eslint directives

- Remove unused eslint-disable directives from multiple files
- Fix floating promise in baileys-event-stream.ts by adding void operator
- Remove unused import recordMessageRetry from messages-send.ts
- Prefix unused variable beforeTime with underscore in test file
- Remove incorrect eslint-disable comments that were causing prettier errors

Progress: Reduced from 68 to 35 errors. Remaining errors are primarily max-depth issues.

https://claude.ai/code/session_015R3U3kiprQiNTTNNt31Sg6
This commit is contained in:
Claude
2026-02-13 23:13:20 +00:00
parent e37bf5c2d5
commit 26247c7681
17 changed files with 9 additions and 26 deletions
+1 -2
View File
@@ -1,4 +1,3 @@
/* eslint-disable @typescript-eslint/no-floating-promises, space-before-function-paren */
/**
* Request Tracing Context
*
@@ -320,7 +319,7 @@ export function setSpanError(span: Span, error: Error): void {
span.attributes.error = true
span.attributes.errorMessage = error.message
span.attributes.errorName = error.name
// eslint-disable-next-line @typescript-eslint/no-floating-promises
if (error.stack) {
span.attributes.errorStack = error.stack
}