Qodana IntelliJ
The Qodana IntelliJ linter lets you perform static analysis of your codebase. It brings all the smarts from IntelliJ IDEs:
anomalous code and probable bug detection
dead code elimination
spelling problems highlighting
overall code structure improvement
coding best practices introduction
Try it now
Analyse a project locally
To start, pull the image from Docker Hub (only necessary to get the latest version):
docker pull jetbrains/qodana
and run the analysis locally:
docker run --rm -it -v <source-directory>/:/data/project/ -p 8080:8080 jetbrains/qodana --show-report
where source-directory
should point to the root of your project.
Check the results in your browser at http://localhost:8080
.
Read our Docker guide for more options and details related to the Qodana execution.
Next steps
Last modified: 12 May 2022