Ask HN: How to deal with people that do not follow language style standards?
https://news.ycombinator.com/item?id=10674875There are a few coworkers that, _to me_ don't follow the proper programming language standards for our platforms.
For instance, in any programming language for the past several years, why use a one or two letter/char variable name?
For example:
MusicMP3 m = new MusicMP3();
vs me (and queue the rather heated discussion) MusicMP3 mmp3 = new MusicMP3();
What gives? This guy is fresh out of college and should know not to name variables like this.... no longer is the day 8char restricted variable names.For the record I'm a senior for CS.
How can I approach the few team members that do _not_ follow programming style guidelines (that are set by our lead Programmer mind you)?