.yaml, .toml, etc?

  • @[email protected]
    link
    fedilink
    2111 months ago

    I usually use Json5. It’s JSON, but with all the weird quirks fixed (comments added, you can use hex numbers, you can have trailing commas etc.)

      • @[email protected]
        link
        fedilink
        111 months ago

        I don’t know if it’s actual json5, but eslint and some other libraries use extended, commentable json in their config files.

  • @AverageCakeSlice
    link
    1711 months ago

    JSON by a mile. I hate the YAML plague, it’s some of the most unintuitive syntax I’ve seen and yet it’s everywhere in DevOps/SysOps.

    • Sylveon
      link
      fedilink
      911 months ago

      The only thing that really annoys me about JSON is that it doesn’t allow comments.

    • @[email protected]
      link
      fedilink
      411 months ago

      Yeah, any language in which whitespace count is semantically significant can go suck fat nards.

      • @[email protected]
        link
        fedilink
        English
        811 months ago

        Not sure whether fantastic troll or just no exposure to Python.

        Either way…I’m here for it.

        • @[email protected]
          link
          fedilink
          811 months ago

          Neither, I’ve written plenty of Python and I know how useful it can be. However, as someone who is neurospicy, I find languages that have semantically l significant white space to be frustrating to read.

          Sure, there are tools to help with it. Sure, they help. But they don’t replace how much more useful curly braces are at defining scope.

          • @[email protected]
            link
            fedilink
            English
            211 months ago

            You’re not wrong. Having to figure out which element is borked in a yaml file is not great. And the implementation using yaml is all over the place, so even though tools do exist, they’re mediocre at best.

            But, to be fair, Python has always done the same to me. As a fellow Neuro-spicy (and with a background in Java and C# and JavaScript), although the tools are better to point you in the right direction, significant white space (or indentations) are significant white space (or indentations).🤷‍♂️

    • @[email protected]
      link
      fedilink
      110 months ago

      YAML works better with git than JSON, but so much config work is copy and pasting and YAML is horrible at that.

      Having something where changing one line doesn’t turn into changing three lines, but you could also copy it off a website would be great.

  • @[email protected]
    link
    fedilink
    English
    1411 months ago

    A lot of good answers but I would add one note:

    • use a format that supports comments, and JSON is not one of those…
    • @[email protected]
      link
      fedilink
      English
      1211 months ago

      Of course it does!

      {
        comment: "This data is super important and it runs the system or something",
        data: ["Some", "stuff", "here"]
      }
      
        • @[email protected]
          link
          fedilink
          English
          110 months ago

          It’s so easy to use, and you can read the comments from in your program too!

          ^(in case you weren’t just playing along, please never do comments this way)

          • @[email protected]
            link
            fedilink
            English
            110 months ago

            I liked the idea to be honest. I can just call the entry “description” instead and all is good ^^

            • @[email protected]
              link
              fedilink
              English
              210 months ago

              Ideally, you would use TOML for human-readable configuration and document your JSON API with external documentation instead of sending comments around a bunch. If you need to display the description to the end user though, that would be a valid use case.

    • @[email protected]
      link
      fedilink
      111 months ago

      json with comments can be parsed by a yaml parser. It’s how I write yaml, in fact (yaml is a superset of json. any valid json is valid yaml, but it also supports comments)

  • @[email protected]
    link
    fedilink
    1311 months ago

    It depends what you need your configuration file to be:

    Need a well defined easy to understand concrete configuration file?

    • Use .toml. It was made to be both human and computer friendly while taking special attention to avoid the pitfalls commonly found in other configuration files by explicitly stating expected types around commonly confused areas.

    Need a simple to implement configuration file?

    • Use .json. It’s famous for being so simple it’s creator “discoverer” could define it on a business card.

    Need an abstract configuration file for more complicated setups?

    • Use .ncl. Nickle allows you to define functions so that you can generate/compute the correct configuration by changing a few variables/flags.
  • Rikudou_Sage
    link
    fedilink
    1011 months ago

    Yaml for me, I really like it. And the fact that every valid JSON is also a valid YAML is nice.

    • Magnus Åhall
      link
      fedilink
      311 months ago

      YAML here as well.

      Configuration many levels deep gets so much harder for me to read and write in JSON with all [], {} and “”

      Also the lack of comments… And YAML still is more used in software I’m using than JSON5, so I’d rather skip yet another format/library to keep track of.

  • @[email protected]
    link
    fedilink
    7
    edit-2
    10 months ago

    No reason to go beyond simple key-value format like dotenv or just env variables. If you need more structure then maybe you are confusing configuration with state and this is not really the same thing.

  • @[email protected]
    link
    fedilink
    711 months ago

    https://nestedtext.org/

    It’s like yaml but simple, consistent, untyped, and you never need to escape any characters, ever.

    Types and validation aren’t going to be great unless they’re in the actual code anyway.

    • @timbuck2themoon
      link
      English
      311 months ago

      Agreed.

      I honestly don’t understand anyone who likes json over it. Json is fine for certain things but manually typing that is pain ten times over. It’s better than XML surely but not by terribly much.

  • @[email protected]
    link
    fedilink
    611 months ago

    It really depends. I usually prefer json. It’s easily understandable from humans and from machines, it doesn’t depends on indentation and above everything else I like it very much 🤣

      • @[email protected]
        link
        fedilink
        211 months ago

        You might want to checkout NixOS (or home-manager if you don’t want a cold deep dive into a rabbit-hole).

        • @[email protected]
          link
          fedilink
          210 months ago

          You’re probably right I have checked it out, but so far home-manager was a bit of a cold shower to me. I had a ton of trouble wrapping my head around which parts of what config should be responsible for what - and lots of the documentation seems to either be out of date or relying on thing that are still in the ‘testing’ stage?

          I’m interested, but so far just found it frustrating.

          • @[email protected]
            link
            fedilink
            110 months ago

            Hmm yeah it probably helps to be able to program functionally (it’s basically lambda calculus with lazy sets and a little bit of syntax sugar). NixOS has a little bit of a steeper learning curve. When understanding Nix itself and having a little bit dived into the the nixpkgs repo you’ll quickly get a grip for it (and understand some of the IMHO quirky design decisions).

            But then I feel it’s only going to get better, as the system can be perfectly configured to your liking and it stays like that across different machines etc. I think the initial investment has paid off for me so far. It’s really hackable and you can quickly try ideas without having to fear to break your system. Also something like nix flakes for good reproducible dependency management across different OS is really nice (at least if not much if any GUI is involved, then the different worlds (impure vs pure) sometimes clash together).

  • @[email protected]
    link
    fedilink
    5
    edit-2
    11 months ago

    Depends on what you mean exactly with “file format”.

    If declarative functional programming falls under that, I think something like Nickel, the already mentioned Dhall or Nix. Though Nix more so for packaging and some kind of system management (NixOS?), it’s not easily embeddable into a runtime (your app?). Nickel or Dhall is better for that, as they are built from ground up with that in mind, Nickel is maybe the successor of Nix as it is inspired by Dhall and Nix (one goal is to use Nickel as frontend).

    The reason why I recommend a simple declarative language, is that they are IMHO much better composable as it lets the user hide boilerplate via functions. I almost always feel limited by static configuration formats like yaml, json etc…