Sha256: 415055b1b201241b865aa1bd18f90f1b96bca607a7d7ead3e6cd314224fbd882
Contents?: true
Size: 728 Bytes
Versions: 16
Compression:
Stored size: 728 Bytes
Contents
#pragma once enum class config_syntax { /** * Pedantically strict <a href="http://json.org">JSON</a> format; no * comments, no unexpected commas, no duplicate keys in the same object. * Associated with the <code>.json</code> file extension and * <code>application/json</code> Content-Type. */ JSON, /** * The JSON-superset <a * href="https://github.com/typesafehub/config/blob/master/HOCON.md" * >HOCON</a> format. Associated with the <code>.conf</code> file extension * and <code>application/hocon</code> Content-Type. */ CONF, /** Used as a default */ UNSPECIFIED // Original project also supported Java's .properties formats, but we do not };
Version data entries
16 entries across 16 versions & 2 rubygems