• GissaMittJobb@lemmy.ml
    link
    fedilink
    arrow-up
    0
    ·
    2 months ago

    Automatically enforced deterministic formatting is the best, there’s nothing that beats it. The productivity in just being able to format on save knowing that the code will be in the ideally formatted state, along with the anti-bikeshedding properties of this strategy, makes it unbeatable.

    • h0bbl3s@lemmy.world
      link
      fedilink
      arrow-up
      0
      ·
      2 months ago

      gofumpt and gofmt are the best. One of the reasons if I have a choice I’ll code in go. I heard rumblings that rust was working towards having rustfmt be a standard crate.

      • GissaMittJobb@lemmy.ml
        link
        fedilink
        arrow-up
        0
        ·
        2 months ago

        Go is in a good position, yeah. JavaScript has prettier, which is nice. Java has google-java-format. Python has ruff, which is quite good. Kotlin has ktfmt, which I believe made a mistake with their standards by not following the standard formatting guidelines for the language, but whatever. Uniform and deterministic for the win.

      • Username@feddit.org
        link
        fedilink
        arrow-up
        0
        ·
        2 months ago

        What do you mean? rustfmt is the de facto standard and is easily run using cargo fmt. Most projects use it along with clippy, the standard linter.