fix: ignore eslint rule

This commit is contained in:
Innei
2026-01-08 15:53:11 +08:00
parent bf2039d1f1
commit bac4736932
2 changed files with 3 additions and 1 deletions

View File

@@ -145,7 +145,8 @@ export class MarkdownController {
)
const readable = new Readable()
readable.push(await rtzip.generateAsync({ type: 'nodebuffer' }), null)
readable.push(await rtzip.generateAsync({ type: 'nodebuffer' }))
readable.push(null)
return readable
}

View File

@@ -43,6 +43,7 @@ export default sxzz(
'no-restricted-syntax': 0,
'unicorn/filename-case': 0,
'unicorn/prefer-math-trunc': 0,
'unicorn/prefer-single-call': 0,
'unused-imports/no-unused-imports': 'error',