• @[email protected]
    link
    fedilink
    02 months ago

    The example for 2 isn’t good. Seemingly superfluous commas, brackets, and escaped newlines can be useful and even important for clean maintenance.

    The solution to the whitespace gripe is strictly enforced formatting standards with a git hook running a manually invokable script.

    • @[email protected]
      cake
      link
      fedilink
      02 months ago

      Yeah but sometimes you do get meaningless changes that aren’t just whitespace even with auto formatters. For example if you change the indentation on some code and that causes it to wrap an expression.

        • @[email protected]
          cake
          link
          fedilink
          02 months ago

          git diff -w only ignores whitespace within a line (e.g. changing indentation). It doesn’t ignore adding or removing new lines.

          But even if it did, wrapping a function call or a long string can introduce extra commas or quotes.