feat: streaming decode functionality with event-based parsing (closes #131)

This commit is contained in:
Johann Schopplich
2025-11-21 22:29:57 +01:00
parent 9ebad53ea3
commit 6c57a14009
19 changed files with 2220 additions and 431 deletions

View File

@@ -1,10 +1,15 @@
// @ts-check
import antfu from '@antfu/eslint-config'
export default antfu().append({
export default antfu({
rules: {
'no-cond-assign': 'off',
},
}).append({
files: ['README.md', 'SPEC.md', '**/docs/**/*'],
rules: {
'yaml/quotes': 'off',
'import/no-duplicates': 'off',
'style/no-tabs': 'off',
'yaml/quotes': 'off',
},
})