9.8 | Extension Guide | Contributing
Contributing
Please be aware that we are not actively looking for feature contributions to SonarQube itself because 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 for SonarQube, but we do happily welcome contributions to the other open-source projects under the SonarSource umbrella.
General guidelines
- Choose an open ticket in JIRA or propose your change on the SonarQube community forum; the discussion there is likely to result in the opening of a JIRA ticket. ;-)
- Use the SonarSource conventions, which you'll find neatly packaged here: https://github.com/SonarSource/sonar-developer-toolset#the-almost-unbreakable-build.
- Use pull requests to submit your work.
New rule implementations in existing plugins
- Start from an existing RSpec (Rule Specification) that lists your language of interest in the Targeted languages field.
- If the RSpec you're interested in doesn't target the language where you want to implement it, raise the question on the community forums.
- If no RSpec exists for the rule you want to implement, raise the question on the Community forum.
- Put your rule implementation class in the [language]-checks (for example: java-checks, or javascript-checks) module, in the checks sub-package.
- The naming convention for implementation classes is
[A-Z][a-za-z]+Check.java
. (Yes, putCheck
in the name too.) The class name should be descriptive and not reflect the rule key. For example,FindBadCodeCheck.java
, notS007.java
. - A good way to get started on a rule implementation is to look at the implementations of rules that do similar things.
- During development, there's no need to load the plugin in a server to test your implementation, use the rule's unit test for that.
- For a complete implementation, make sure all of the following are done:
- create HTML description file and metadata file.
- write test class.
- register the rule in
CheckList.java
. - add the rule to the profile used for the integration test in
profile.xml
. - run the integration test and add any new issues to the set of expected issues.
Was this page helpful?