218
Other dev won't follow best practices, is this common?
(lemmy.world)
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Follow the wormhole through a path of communities !webdev@programming.dev
I've been dealing with similar things over the last few months.
Went through an org restructure, joined a different team and our tech lead was relatively new to the company but has 20yrs experience, sounded good!
Wrong.
Poor communication skills, endless pointless wrappers over everything and even simple things are wildly over-engineered with zero documentation, poor naming and zero tests to verify his homebrew solutions actually work or not.
We go live in 2 months for a nation-wide release. Send help.
I wonder, what kind of wrappers? I have seen some wrappers that seem useless at first, but they shine when we do a refactor because the wrappers concentrate logic in one place.
the pointless and poorly named kind.
Here's one example of many:
For those unfamiliar with Flutter, Column is your go-to out of the box widget that's already flexible and simple enough to implement and customize.
Group
exists purely to set a cross axis alignment value, and by name provides no indication as to what it does or how it lays out its children.All that just to save one line to override the default cross axis alignment...