Format JSON files.

Currently we store JSON as a single line in files. We should prettify it
like we do the other formats.
This commit is contained in:
Caleb 2018-01-02 16:57:39 -07:00 committed by Shawn Erquhart
parent 1167f27939
commit e45f531319

View File

@ -4,6 +4,6 @@ export default {
},
toFile(data) {
return JSON.stringify(data);
return JSON.stringify(data, null, 2);
}
}