Описание тега hjson
NoneHjson - это формат файла конфигурации, основанный на json. Его легче вводить и читать, чем json.
Hjson, человеческий JSON
http://hjson.org/icon/hjson-xs.png
Формат файла конфигурации для людей. Упрощенный синтаксис, меньше ошибок, больше комментариев.
вступление
{
# specify rate in requests/second (because comments are helpful!)
rate: 1000
// prefer c-style comments?
/* feeling old fashioned? */
# did you notice that rate doesn't need quotes?
hey: look ma, no quotes for strings either!
# best of all
notice: []
anything: ?
# yes, commas are optional!
# Obviously you can always use standard JSON syntax as well:
favNumbers: [ 1, 2, 3, 6, 42 ]
}
Подробнее см. http://hjson.org/.