chore(lint): cleanup unused eslint-disable directives

This commit is contained in:
mkorwel
2026-03-19 22:49:17 -07:00
committed by Matt Korwel
parent 050c30330e
commit 5f2b4d551d
11 changed files with 11 additions and 29 deletions
@@ -159,13 +159,11 @@ async function truncateHistoryToBudget(
} else if (responseObj && typeof responseObj === 'object') {
if (
'output' in responseObj &&
// eslint-disable-next-line no-restricted-syntax
typeof responseObj['output'] === 'string'
) {
contentStr = responseObj['output'];
} else if (
'content' in responseObj &&
// eslint-disable-next-line no-restricted-syntax
typeof responseObj['content'] === 'string'
) {
contentStr = responseObj['content'];