JPDev@programming.dev to Programmer Humor@programming.dev · 2 years agoReview Pleaseprogramming.devimagemessage-square60fedilinkarrow-up1807arrow-down116
arrow-up1791arrow-down1imageReview Pleaseprogramming.devJPDev@programming.dev to Programmer Humor@programming.dev · 2 years agomessage-square60fedilink
minus-squareshiftymccool@programming.devlinkfedilinkarrow-up2·2 years agoKeep changes small, we use git patch stack https://github.com/uptech/git-ps
minus-squareursakhiin@beehaw.orglinkfedilinkarrow-up4·2 years agoHuman made changes is likely not what caused this image to occur. 111 files with that kind of change count is most likely a dependency update. But could also be that somebody screwed up a merge step somewhere.
minus-squareulterno@lemmy.kde.sociallinkfedilinkEnglisharrow-up1·2 years agoOr maybe their IDE had a different auto indent config and they saved it all, then committed it all without checking the diff or the status.
minus-squarejjjalljs@ttrpg.networklinkfedilinkarrow-up3·2 years agoYou should have an agreed upon format that is enforced by cicd. Prettier, black, whatever.
minus-squareulterno@lemmy.kde.sociallinkfedilinkEnglisharrow-up0·2 years agoI do like the idea of mandating git clang-format as the Kate project has. That way the other devs don’t need to change their own IDE settings to comply.
minus-squareshiftymccool@programming.devlinkfedilinkarrow-up1·2 years agoThe only way I see that is a dependency update is if you’re versioning your node_modules or <insert-folder-here> which is generally a no-no
minus-squareursakhiin@beehaw.orglinkfedilinkarrow-up1·2 years agoMany organizations vendor packages in the repo for a number of different reasons and languages. Not just for node.
Keep changes small, we use git patch stack https://github.com/uptech/git-ps
Human made changes is likely not what caused this image to occur.
111 files with that kind of change count is most likely a dependency update. But could also be that somebody screwed up a merge step somewhere.
Or maybe their IDE had a different auto indent config and they saved it all, then committed it all without checking the
diffor thestatus.You should have an agreed upon format that is enforced by cicd. Prettier, black, whatever.
I do like the idea of mandating
git clang-formatas the Kate project has.That way the other devs don’t need to change their own IDE settings to comply.
The only way I see that is a dependency update is if you’re versioning your node_modules or <insert-folder-here> which is generally a no-no
Many organizations vendor packages in the repo for a number of different reasons and languages. Not just for node.