Vendor things

This commit is contained in:
John Doty 2024-03-08 11:03:01 -08:00
parent 5deceec006
commit 977e3c17e5
19434 changed files with 10682014 additions and 0 deletions

View file

@ -0,0 +1,5 @@
TOML parse error at line 3, column 1
|
3 | type.edible = false # INVALID
| ^
dotted key `type` attempted to extend non-table type (inline table)

View file

@ -0,0 +1,5 @@
TOML parse error at line 3, column 1
|
3 | type = { edible = false } # INVALID
| ^
duplicate key `type` in table `product`

View file

@ -0,0 +1,6 @@
TOML parse error at line 1, column 7
|
1 | key = # INVALID
| ^
invalid string
expected `"`, `'`

View file

@ -0,0 +1,5 @@
TOML parse error at line 1, column 1
|
1 | = "no key name" # INVALID
| ^
invalid key

View file

@ -0,0 +1,5 @@
TOML parse error at line 2, column 46
|
2 | str5 = """Here are three quotation marks: """.""" # INVALID
| ^
expected newline, `#`

View file

@ -0,0 +1,5 @@
TOML parse error at line 3, column 48
|
3 | apos15 = '''Here are fifteen apostrophes: '''''''''''''''''' # INVALID
| ^
expected newline, `#`

View file

@ -0,0 +1,6 @@
TOML parse error at line 5, column 1
|
5 | [fruit.apple] # INVALID
| ^
invalid table header
duplicate key `apple` in table `fruit`

View file

@ -0,0 +1,6 @@
TOML parse error at line 6, column 1
|
6 | [fruit.apple.taste] # INVALID
| ^
invalid table header
duplicate key `taste` in table `fruit.apple`