Fading Coder

One Final Commit for the Last Sprint

Writing a Custom SonarJava Rule: Understanding Unit Test Mechanics

Custom rule development in SonarJava generally follows two patterns. One involves extending the base tree visitor and implementing the JavaFileScanner interface to control scanning logic from scratch. The other, preferred for its simplicity and955 performance, relies on IssuableSubscriptionVisitor t...

Building a Code Quality Pipeline with SonarQube and Jenkins

SonarQube Setup and Configuration SonarQube is an open-source platform for continuous code quality inspection. It analyzes source code across multiple programming languages including Java, C#, Go, C/C++, JavaScript, and Python through extensible plugins. The system integrates with various code analy...