|
|
|
|
|
by throwaway_391
2490 days ago
|
|
My personal JSON Pet hate is:
```
x = [
"Foo",
"Foo2",
]
```
Is not valid, but the following is:
```
x = [
"Foo",
"Foo2"
]
```
Makes dealing with packer configs feel like punching yourself in the face. I still prefer it over YAMLs awkward initial learning curve. |
|