Submitted by twovests in programming
I started using Pylint for my Python projects. It gives a lot of recommendations, and not all of them are good, but it really helps me catch stupid errors and bad formatting.
I don't usually use an IDE, and so having a command-line utility for common IDE things is really nice.
Signed,
- me, a baby programmer lol
Moonside wrote
Linters are, imo, pretty damn good. Honestly I like all kinds of static analysis things. They also end up being kind of stealth tutors pointing to problems you couldn't have known (yet) and you can learn stuff genuinely out of a need.