DEV Community

Cover image for Code Pet Peeves: What's Yours?
dev.to staff for The DEV Team

Posted on

Code Pet Peeves: What's Yours?

Welcome to Code Chatter, your go-to series for conversational coding insights. What makes this series of questions different from all the others? Well, truth be told, not much, but they're still thought-provoking and fun. Join us as we explore the coding world, one witty question at a time.

What's your secret 'code pet peeve' that, while not critical, drives you crazy?

Follow the DEVteam for more discussions and online camaraderie!

Top comments (28)

Collapse
 
vapourisation profile image
Thomas Pegler

This is so silly but I really don't like the Javascript pattern of not using semi-colons and trying to remove as much punctuation/structure as possible. I get the desire for conciseness but not having reliable beginning and end-points in code bothers me. I'm saying that as a Python developer (sometimes I wish Python had more punctuation but at least whitespace is the delimiter)

Collapse
 
insidewhy profile image
insidewhy

I have a slight preference to leave semicolons out whenever possible. Minimalist. It doesn't really bother me either way.

Collapse
 
jonrandy profile image
Jon Randy 🎖️

Spaces being used for indentation instead of tabs.
Tabs, not spaces

Collapse
 
michaeltaylor profile image
Michael R. Taylor

Yes, this one! And to go along with it, at least for me: using tabs for alignment. 😠

Collapse
 
arndom profile image
Nabil Alamin

My biggest would have to be spacing of code blocks, seeing large lines of code all together with no breathing room is just awful and slows down the readability.

Collapse
 
kachidk profile image
Nwanguma Victor

For me its the opposite, putting new lines only when necessary helps to know if pieces of code are related.

Collapse
 
arndom profile image
Nabil Alamin

Yh, I agree, but, there are cases where a new line really makes it easier to read, even when they are related. Take this for instance:

non-space example

spaced example

I'd say the latter makes the block a bit clearer.

Thread Thread
 
kachidk profile image
Nwanguma Victor • Edited

Cleaner does not necessary mean readable. i.e there are one-liners that are cleaner but not readable.

In your example, It would be annoying If I was scrolling through the code and, at every new-line stop to try and contemplate if the code above and below is related or not.

Thread Thread
 
arndom profile image
Nabil Alamin

Yh, one liners can be tedious.

The example I gave is about readability, the nesting also helps you to understand that's it's part of the same context, collapsing that block could also help you along.

At the end of the day I think it's just up to what your team agree is the pattern to follow

Collapse
 
jamesowens profile image
James Owens

If you're separating blocks of code that are related with new lines it could be an indication that your blocks could be extracting into separate methods.

Thread Thread
 
arndom profile image
Nabil Alamin

Definitely agree, this example is not the end and be all. In that case I was going by the rule of only abstracting when there is a repetition of more than 3. It's all opinionated though

Collapse
 
khairunnisaas profile image
Khairunnisaas

i agree for that

Collapse
 
ranggakd profile image
Retiago Drago

Cannot be consistent with either this

def add(a, b, c):
    return a + b + c

add(a_very_long_variable_a,
    a_very_long_variable_b,
    a_very_long_variable_c)
Enter fullscreen mode Exit fullscreen mode

or this

def add(a, b, c):
    return a + b + c

add(
    a_very_long_variable_a,
    a_very_long_variable_b,
    a_very_long_variable_c
)
Enter fullscreen mode Exit fullscreen mode
Collapse
 
khairunnisaas profile image
Khairunnisaas

bottom one is much better for me

Collapse
 
ranggakd profile image
Retiago Drago

sometimes the former saves more space 😭

Collapse
 
xanozoid profile image
XANOZOID

No comments

Collapse
 
ben profile image
Ben Halpern

I don't know if it's a pet peeve, but premature abstraction/DSL-ification grinds my gears, i.e. violating the "rule of three"

Rule of three is a code refactoring rule of thumb to decide when similar pieces of code should be refactored to avoid duplication. It states that two instances of similar code do not require refactoring, but when similar code is used three times, it should be extracted into a new procedure. The rule was popularised by Martin Fowler in Refactoring and attributed to Don Roberts.

Collapse
 
manchicken profile image
Mike Stemle

My pet peeve is folks having too strong of an opinion about syntax.

  • Spaces or tabs? I’m bored.
  • Semicolons or not? Yawn.

I’m also rather annoyed by the over-emphasis on OOP as though it is the only correct paradigm.

Finally, I don’t like folks who behave like one language is better than another. They’re tools, not political positions.

Collapse
 
mikeatupside profile image
Mike Lowe • Edited

Not strictly code but I tend to alphabetise things like environment variables in config files, YAML, JSON param files for CloudFormation, that sort of thing. It pains my heart when someone comes along and just throws new variables/params in in any old order 😭

Collapse
 
ksolomon profile image
Keith Solomon

It’s code-ish, but I ran into this doing a review with one of our juniors today. She was working on the mobile side of a site, and had the hamburger menu on the left…that’s not a problem. The problem is, the menu opened from the right. It’s so minor as to be pointless, but it drives me crazy to see that…

Collapse
 
sarassc profile image
Sattineez_SC

Well, I guess mine it's why some languages start counting with 1, when the rest starts with 0 ( elements of lists for exemple) , why do they want to be different of the rest and don't start with the 0 😅

Collapse
 
kurealnum profile image
Oscar

I have come to really like statically typed languages. Dynamically typed languages are fine, but I can't deny that they get on my nerves a little bit.

Collapse
 
neilb_92 profile image
Neil B

Upper-case SQL keywords. It looks like someone's crazy uncle sent out another email forward and the illegibility gives me a headache.

Collapse
 
thumbone profile image
Bernd Wechner

Line length limit standards predicated on screens narrower than the narrowest screens we have today (not moved with the times). Aka PEP8.

Collapse
 
kaamkiya profile image
Kaamkiya

No comments, and when (in Python), not all of the import statements are at the top.

Collapse
 
peterwitham profile image
Peter Witham

For me, it's over optimizing code to the point that whilst short and elegant, it is not readable at a glance for those that might not live in the code base every day.