seconded on not aligning things. its the whole source of the problem in the first place and doesnt even serve a purpose
Comment on Tabs are objectively better than spaces - gomakethings.com
realharo@lemm.ee 1 year agoAnything for indent, and fuck alignment, just put things on a new line.
milo128@lemm.ee 1 year ago
MajorHavoc@lemmy.world 1 year ago
It does help with reducing thrashing between edits in git diffs. Or rather, opinionated autoformatters do, which is the only reason I bother with alignment.
wgs@lemmy.sdf.org 1 year ago
Like that ?
Man you’re a genius ;)
realharo@lemm.ee 1 year ago
Not like that, lol
Just saying, instead of this monstrosity
Just use
wgs@lemmy.sdf.org 1 year ago
When I talk about alignment it’s not about function arguments, but values, “=” signs and such. You simply cannot use tabs for that because alignment must be fixed and indentation independent:
realharo@lemm.ee 1 year ago
I normally avoid that too, I find it hurts readability more than helps, plus a proper IDE will separate it by color anyway.
PHLAK@lemmy.world 1 year ago
This kind of “manual” alignment should be avoided for many reasons including the fact that adding/removing/changing of one parameter here may force you to modify multiple lines which on it’s own is annoying but this will also show up in the diff during review making it harder to grep what was actually changed.
catastrophicblues@lemmy.ca 1 year ago
Yeah I agree I don’t find alignment very useful. It’s more work for dubious benefit, and god forbid you change one of the lines.
Lmaydev@programming.dev 1 year ago
People seem to have a real issue with using new lines and I’ve never quite understod why.
It feels like a lot of those people are using notepad like applications instead of coding focused ones with collapsible regions etc.
hansl@lemmy.world 1 year ago
The way god indented.
0ops@lemm.ee 1 year ago
I almost scrolled past this one