Merge branch 'master' into toml_encoder

This commit is contained in:
Mike Farah
2025-12-16 14:27:22 +11:00
8 changed files with 104 additions and 4 deletions
+1 -1
View File
@@ -67,7 +67,7 @@ var TomlFormat = &Format{"toml", []string{},
func() Decoder { return NewTomlDecoder() },
}
var HclFormat = &Format{"hcl", []string{"h"},
var HclFormat = &Format{"hcl", []string{"h", "tf"},
func() Encoder { return NewHclEncoder(ConfiguredHclPreferences) },
func() Decoder { return NewHclDecoder() },
}