feat: add support for hcl files
This commit is contained in:
parent
14e0b29372
commit
8509f98d69
14 changed files with 113 additions and 5 deletions
3
test_data/full.hcl
Normal file
3
test_data/full.hcl
Normal file
|
@ -0,0 +1,3 @@
|
|||
String = "default string"
|
||||
Invariant = "should not change"
|
||||
Int = 1
|
1
test_data/invalid.hcl
Normal file
1
test_data/invalid.hcl
Normal file
|
@ -0,0 +1 @@
|
|||
String: not hcl
|
1
test_data/part1.hcl
Normal file
1
test_data/part1.hcl
Normal file
|
@ -0,0 +1 @@
|
|||
String = "foo"
|
1
test_data/part2.hcl
Normal file
1
test_data/part2.hcl
Normal file
|
@ -0,0 +1 @@
|
|||
Int = 42
|
1
test_data/same1.hcl
Normal file
1
test_data/same1.hcl
Normal file
|
@ -0,0 +1 @@
|
|||
String = "foo"
|
1
test_data/same2.hcl
Normal file
1
test_data/same2.hcl
Normal file
|
@ -0,0 +1 @@
|
|||
String = "bar"
|
3
test_data/unknown.hcl
Normal file
3
test_data/unknown.hcl
Normal file
|
@ -0,0 +1,3 @@
|
|||
String = "config string"
|
||||
Int = 42
|
||||
Unknown = "foo"
|
2
test_data/valid.hcl
Normal file
2
test_data/valid.hcl
Normal file
|
@ -0,0 +1,2 @@
|
|||
String = "config string"
|
||||
Int = 42
|
Loading…
Add table
Add a link
Reference in a new issue