GSGustavo Silvaincodequality.hashnode.dev·May 11, 2021 · 8 min readPHP Static Analysis Tools ReviewPhoto by Ben on Unsplash thank you :ok_hand: Performing PHP static analysis will help maintain your code quality over time, particularly as it becomes even harder in large projects developed by many programmers. Each person has different code styles ...00
GSGustavo Silvaincodequality.hashnode.dev·May 5, 2021 · 2 min readList of tools for code review engineersList of tools for code review engineers If you perform code reviews at your company we hope that this list of tools adds value to your GitHub workflow. We created this list on GitHub recently and we'll periodically keep adding more tools. Feel free t...00
GSGustavo Silvaincodequality.hashnode.dev·Apr 28, 2021 · 8 min readAn In-Depth Explanation of Code ComplexityIt’s no secret code is a complicated thing to write, debug, and maintain which is necessary for high software quality. Moreover, high code complexity brings with it a higher level of code defects, making the code costlier to maintain. So, by reducing...00
GSGustavo Silvaincodequality.hashnode.dev·Apr 21, 2021 · 3 min readReview of Java Static Analysis ToolsIf you code in Java and code reviews are part of your workflow we recommend you to go through the list below. Here are some of the Java Static Analysis tools you should know about: 1. PMD Java PMD scans Java source code and looks for potential proble...01K
GSGustavo Silvaincodequality.hashnode.dev·Apr 14, 2021 · 6 min readHow to code review in a Pull RequestThis article discusses how to code review within a pull request in order to improve your code quality. Let's start with pull requests first. What are Pull Requests? For those unfamiliar, pull requests are used to get peer approval before changes are ...00