DEV Community

Discussion on: What software development tools (libraries/frameworks/apps/whatever) make you feel relaxed while you're working with them?

Collapse
 
tmr232 profile image
Tamir Bahar

I think the tools that helped me relax most recently have been linters, code-formatters, and tests. Being able to trust tooling & tests to fix the formatting of my code and detect silly mistakes makes for a much more pleasant experience.

As for the code itself, both the attrs and typing libraries in Python are things I can't do without now. They make the code much cleaner and more understandable.