• maor@lemmy.org.il
    link
    fedilink
    arrow-up
    6
    arrow-down
    1
    ·
    10 months ago

    I guess they were referring to formatting other than tabs, like place of brackets and line length, which sounds like a neat idea

    • dukk@programming.dev
      link
      fedilink
      arrow-up
      6
      arrow-down
      1
      ·
      10 months ago

      …until you start using languages where whitespace is the only way to distinguish code blocks. (Most notably Python.)

      • aes@programming.dev
        link
        fedilink
        English
        arrow-up
        2
        ·
        10 months ago

        It was harder to explain why picking on Python for this is dumb, before gotofail… (Not saying that’s what you’re doing, but it feels close, so this is relevant.)

        For whitespace, my rule is this: If any level of indentation depends on the length of any word or name, you’re doing it wrong. If using a more descriptive name causes indentation where previously there was none, that’s fine, but if moving the opening parens causes the interior to be indented more, less so. (Yes, Golang’s structs)