Ask HN: What are the best tools for code reviews?
11–20 of 55 posts
Re: Ask HN: What are the best tools for code reviews?
#12Re: Ask HN: What are the best tools for code reviews?
#13I'd really like a code review tool that is code aware. That is, it treats the diff as code instead of plain text. I'd like to be able to figure out where a method is called from, go to definition and so on. Basically the same stuff I can do in my editor, but without having to clone the branch.
Not sure how feasible that is to implement transparently though. Seems to me at minimum it'd have to require developers to add some kind of annotation to the function to include a globally unique identifier (though I'd honestly be willing to put up with that in exchange for the benefits).
Re: Ask HN: What are the best tools for code reviews?
#14Re: Ask HN: What are the best tools for code reviews?
#15Re: Ask HN: What are the best tools for code reviews?
#16Gitmate is much more than just static code analysis and review suggestions. It supports automatic issue triaging, rebases, labeling, identifying human reviewers, and so on.
Here's an example code review: https://i.imgur.com/JO0nXL7.png
(Here's an example if there are 10+ reviews: https://i.imgur.com/VlQA9iS.png)
Re: Ask HN: What are the best tools for code reviews?
#17My favorite tool is a Microsoft internal tool called CodeFlow. If you don't want to work for them just to have a great code review experience, I recommend https://reviewable.io . Very nice!
Re: Ask HN: What are the best tools for code reviews?
#18Re: Ask HN: What are the best tools for code reviews?
#19I'd really like a code review tool that is code aware. That is, it treats the diff as code instead of plain text. I'd like to be able to figure out where a method is called from, go to definition and so on. Basically the same stuff I can do in my editor, but without having to clone the branch.
Re: Ask HN: What are the best tools for code reviews?
#20I'd really like a code review tool that is code aware. That is, it treats the diff as code instead of plain text. I'd like to be able to figure out where a method is called from, go to definition and so on. Basically the same stuff I can do in my editor, but without having to clone the branch.