this post was submitted on 01 Mar 2024
8 points (100.0% liked)

Programmer Humor

32000 readers
1744 users here now

Post funny things about programming here! (Or just rant about your favourite programming language.)

Rules:

founded 5 years ago
MODERATORS
 
you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 1 points 6 months ago (1 children)

I felt that. I have a colleague whose coding style is different to mine and whenever they work on code that I originally wrote, I have to resist the temptation to modify things to camelCase.

[–] [email protected] 2 points 6 months ago (1 children)

Linters make these kind of things easier. Then you get mad at the tool rather than your coworker.

[–] [email protected] 1 points 6 months ago (1 children)

Does Prettier count as a linter?

I always thought linters were more to find bad practice and possible errors than control the code style

[–] [email protected] 2 points 6 months ago

Some linters can do both. Getting one set up as an automated job whenever code is pushed to the repo is on my TODO list...