This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
~/Scra+/ralight-configs $ python3 -c "import json; print(json.load(open('broken-config.json')))" | |
[snip] | |
json.decoder.JSONDecodeError: Expecting ',' delimiter: line 10 column 20 (char 151) | |
~/Scra+/ralight-configs $ python3 -c "import yaml; print(yaml.safe_load(open('broken-config.yaml')))" | |
[snip] | |
yaml.scanner.ScannerError: while scanning a simple key | |
in "broken-config.yaml", line 9, column 5 | |
could not found expected ':' | |
in "broken-config.yaml", line 10, column 18 |