• homura1650@lemm.ee
    link
    fedilink
    arrow-up
    11
    ·
    9 days ago

    Have you ever worked in a place where every function/field needed a comment? Most of those comments end up being “This is the <variable name>, or this does <method name>”. Beyond, being useless, those comments are counter productive. The amount of screen space they take up (even if greyed out by the IDE) significantly hurts legability.

      • EpeeGnome@lemm.ee
        link
        fedilink
        English
        arrow-up
        4
        ·
        9 days ago

        The issue with having mandatory useless comments is that any actually useful comments get lost in the noise.

        • Alexstarfire@lemmy.world
          link
          fedilink
          arrow-up
          3
          ·
          9 days ago

          I get what you’re saying. Perhaps I just haven’t had too many variables and such that have had such comments. VsCode shows the comments on hover when you’re in other parts of the code base. Which makes most any comment useful because something that is obvious in one part of the code isn’t immediately obvious in another. Though, that necessitates making comments that actually help you figure that out.