sonarlint-intellij alternatives and similar libraries
Based on the "Tools" category.
Alternatively, view sonarlint-intellij alternatives based on common mentions on social networks and blogs.
-
kotlin-android-template
Android + Kotlin + Github Actions + ktlint + Detekt + Gradle Kotlin DSL + buildSrc = ❤️ -
jtransc
DISCONTINUED. Bytecode to source converting Java & Kotlin code into JavaScript, C++, D, C#, PHP, AS3, Dart and Haxe and run it everywhere. Also use JVM code in your favourite language as a library. -
Ostara
Ostara is a cross-platform desktop app for managing and monitoring Spring Boot applications using the Actuator API, providing comprehensive insights and effortless control. -
MpApt
DISCONTINUED. (Deprecated) :wrench: Kotlin Native/JS/JVM Annotation Processor library for Kotlin compiler plugins -
ktfmt-gradle
A Gradle plugin to apply ktfmt to your builds, and reformat you Kotlin source code like a glimpse 🧹🐘 -
ComposeRecyclerView
Android - A jetpack compose list view that is backed by our all time favourite RecyclerView. -
LiveStream-Kt (Android) 📱
DISCONTINUED. LiveStream is a simple class which makes communication easy among different modules of your application. -
ARFaceDetection
AR-based library for Android which is capable of detecting faces and overlaying images above the user’s head -
Kotlin Bootstrap
This set of libraries is designed to help developers accomplish various tasks easier and faster -
GradleMavenPush
Helper to upload Gradle Android Artifacts, Gradle Java Artifacts and Gradle Kotlin Artifacts to Maven repositories (JCenter, Maven Central, Corporate staging/snapshot servers and local Maven repositories). -
EasyDokkaPlugin
Gradle Script plugin to generate documentation by Dokka documentation engine in Javadoc or other formats for Java, Kotlin, Android and non-Android projects. It's very easy, you don't need to add to dependencies section additional classpath or think about compatibility issues, you don't need additional repositories also. -
buildSrcVersions
Better Gradle dependencies management inside the IDE. Search for available updates.
CodeRabbit: AI Code Reviews for Developers

Do you think we are missing an alternative of sonarlint-intellij or a related project?
README
SonarLint IntelliJ Plugin
SonarLint is an IDE extension that helps you detect and fix quality issues as you write code. Like a spell checker, SonarLint squiggles flaws so they can be fixed before committing code.
Useful links
- SonarLint website
- Features
- List of static code analysis rules per language:
- SonarLint community
How to install
You can install SonarLint from the JetBrains Plugin Repository, directly available in the IDE preferences.
Node.js >= 14.20 is required to perform JavaScript or TypeScript analysis (Node.js >= 16 is recommended).
Have Question or Feedback?
For SonarLint support questions ("How do I?", "I got this error, why?", ...), please first read the FAQ and then head to the SonarSource forum. There are chances that a question similar to yours has already been answered.
Be aware that this forum is a community, so the standard pleasantries ("Hi", "Thanks", ...) are expected. And if you don't get an answer to your thread, you should sit on your hands for at least three days before bumping it. Operators are not standing by. :-)
Contributing
If you would like to see a new feature, please create a new thread in the forum "Suggest new features".
Please be aware that we are not actively looking for feature contributions. The truth is that it's extremely difficult for someone outside SonarSource to comply with our roadmap and expectations. Therefore, we typically only accept minor cosmetic changes and typo fixes.
With that in mind, if you would like to submit a code contribution, please create a pull request for this repository. Please explain your motives to contribute this change: what problem you are trying to fix, what improvement you are trying to make.
Make sure that you follow our code style and all tests are passing.
How to build
./gradlew buildPlugin
Note that the above won't run tests and checks. To do that too, run:
./gradlew check buildPlugin
For the complete list of tasks, see:
./gradlew tasks
How to run ITs
./gradlew :its:runIdeForUiTests &
The above will start an IDE instance with the SonarLint plugin. Wait for the UI robot server to start, then run the ITs:
./gradlew :its:check
Finally close the IDE.
To test against a specific version of IntelliJ, the ijVersion
property can be used, e.g.:
./gradlew :its:runIdeForUiTests -PijVersion=IC-2019.3 &
./gradlew :its:check
Please note that the IDE must be in foreground while tests are executed.
How to develop in IntelliJ
Import the project as a Gradle project.
Note: whenever you change a Gradle setting (for example in build.gradle.kts
),
don't forget to Refresh all Gradle projects in the Gradle toolbar.
To run an IntelliJ instance with the plugin installed, execute the Gradle task runIde
using the command line,
or the Gradle toolbar in IntelliJ, under Tasks/intellij
.
The instance files are stored under build/idea-sandbox
.
Keep in mind that the clean
task will wipe out the content of build/idea-sandbox
,
so you will need to repeat some setup steps for that instance, such as configuring the JDK.
Whenever you change dependency version, the previous versions are not deleted from the sandbox, and the JVM might not load the version that you expect.
As the clean
task may be inconvenient, an easier workaround is to delete the jars in the sandbox, for example with:
find build/idea-sandbox/ -name '*.jar' -delete
How to release
See release pipeline at Azure DevOps.
License
Copyright 2015-2022 SonarSource.
Licensed under the GNU Lesser General Public License, Version 3.0
*Note that all licence references and agreements mentioned in the sonarlint-intellij README section above
are relevant to that project's source code only.