DarkPlayer@lemmy.world to Programming@programming.dev · 4 months agoHow far should a programming language aware diff go?semanticdiff.comexternal-linkmessage-square22fedilinkarrow-up177arrow-down14
arrow-up173arrow-down1external-linkHow far should a programming language aware diff go?semanticdiff.comDarkPlayer@lemmy.world to Programming@programming.dev · 4 months agomessage-square22fedilink
minus-squareFizzyOrange@programming.devlinkfedilinkarrow-up2arrow-down1·4 months agoYeah 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.
minus-squareFizzyOrange@programming.devlinkfedilinkarrow-up2arrow-down1·4 months agogit 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.
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.
How is that not whitespace?
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.