this post was submitted on 25 Nov 2025
339 points (99.4% liked)
Programmer Humor
27534 readers
88 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Sonarqube is a kind of like an automated code quality checker that works for a bunch of programming languages. It's pretty configurable (though I've never configured it myself), so it can be set up to check a code base for a wide range of things.
There's a couple of different ways to run it, in my experience bigger companies usually have a dedicated server on their internal networks that connects to their CI/CD pipelines so that code gets checked before it gets merged in.
On a smaller scale, it's also possible to run locally (either on metal or inside a docker container). From there you'd install a plugin to your IDE of choice.
More info:
Wikipedia
Geeks for geeks
Interesting, I'll do some further research.