Live data from Hacker News

Ask HN: What are some developer tools you wish existed?

news.ycombinator.com

11–12 of 12 posts

Re: Ask HN: What are some developer tools you wish existed?

#11
post #2

A way to surface code quality -- across various metrics -- at any level of code (individual token, line of code, file, directory, package, library, application, ...). Metrics could include: code style consistency, stability (has the area of code changed much over time), risk (is there potential for security vulnerabilities related to the code area), and test coverage. The metrics - if displayed visually - might look…

Examples: Code Climate https://codeclimate.com/ SonarQube https://www.sonarqube.org/

There is plenty of tools like this. I find them not very useful. They do not provide more value than standard project CI/CD setup eslint/jest/typescript/dependabot. These create a lot of false positives and act as rubber stamp for incompetent managers. Look our code is great, but we just failed to release for 4 weeks because of bugs and infra.

Best code quality measure is rate of defects. Tracking these and properly labeling issues by component would give better indication where to invest time into refactors/rewrites. In current climate good QA are rare and companies believe that devs can do everything.

Post reply on HN