There is more to code review than (automatable) detection

(adaptivecapacitylabs.com)

15 points | by utiiiD 1 day ago

5 comments

  • n4r9 13 minutes ago
    There's been a lot of talk about the purpose of code review recently. It makes sense in the face of AI. Heres a link that was submitted a little while ago: https://mathstodon.xyz/@mjd/115096720350507897

    And in response I wrote a non-exhaustive checklist of things that a code review can look for:

    - Does it functionally achieve what it sets out to (as per tacker issue or PR description)?

    - Does it have extraneous code? Leftover debug prints, private API keys etc...

    - Does it have any obvious defects? Memory leaks, un-handled edge cases, security flaws, obsolete API calls, etc...

    - Could it be more understandable? Add/remove abstractions, better variable/method names, more/less functional etc...

    - Is the style consistent with the codebase and/or style guidelines?

    - Are there obvious performance improvements? Hashset instead of list, lazy evaluations, etc...

    - Is it sufficiently well tested?

    I think LLMs are okay at most of these, and worst at the first.

  • hazard 2 minutes ago
    Pangram check on the article: 94% of this text is AI
  • bengold14 12 minutes ago
    I couldn’t agree more. Code review is integral to engineering, to sharing system understanding, to building sustainable systems.

    Something is missing in the new ai bot review paradigm we’ve all sleepwalked into.

    I’ve been building Archme.io for this reason. PR reviews for the age of AI

  • LunicLynx 17 minutes ago
    Unfortunately this often represents the only feedback given by the people in those „higher“ positions.

    „The indent is wrong here“

    „Comments should end with a period“

    Because this kind of feedback is and was always easy.

    • parpfish 10 minutes ago
      If you get feedback like that, it’s time for your team to get automated linting/formatting
  • abstractspoon 18 hours ago
    I think this applies to the writing of code as well