yq/pkg/yqlib/no_json5.go
Robin H. Johnson 76dc8dcae8
feat: JSON5 support
Reference: https://spec.json5.org/
Co-authored-by: Codex <codex@openai.com>
Generated-with: OpenAI Codex CLI (partial)
Signed-off-by: Robin H. Johnson <rjohnson@coreweave.com>
2026-01-13 19:59:04 -08:00

12 lines
154 B
Go

//go:build yq_nojson5
package yqlib
func NewJSON5Decoder() Decoder {
return nil
}
func NewJSON5Encoder(prefs JsonPreferences) Encoder {
return nil
}