rspec/README.adoc

194 lines
9.6 KiB
Plaintext
Raw Normal View History

ifdef::env-github[]
:warning-caption: :warning:
:note-caption: :information_source:
endif::[]
2021-02-19 09:06:56 +01:00
= SonarSource Rule Specification repository
This repository contains the specification of every static-analysis rule available in SonarLint, SonarCloud, or SonarQube.
2021-02-19 09:06:56 +01:00
It also contains rules which have been dropped and rules which will one day be implemented.
== Rules directory structure
* https://github.com/SonarSource/rspec/tree/master/rules[rules] directory: contains every specified rule.
** `rules/Sxxxx`: contains every specification for rule `Sxxxx`.
*** `rules/Sxxxx/*.adoc`: Asciidoc files which can be reused by multiple language-specific descriptions.
*** `rules/Sxxxx/metadata.json`: rule metadata shared between language-specific RSPECs. Each language can override fields in its own `metadata.json` file.
*** `rules/Sxxxx/[LANGUAGE]`: contains the language-specific RSPEC. For every rule, there must be at least one `[LANGUAGE]` subdirectory. +
2021-06-02 10:58:42 +02:00
`[LANGUAGE]` can be any of the following:
include::supported_languages.adoc[]
**** `rules/Sxxxx/[LANGUAGE]/rule.adoc`: asciidoc file used to generate the `Sxxxx` rule description for programming language `[LANGUAGE]`. It can include parts from `*.adoc` files located in the parent directory.
2021-02-19 09:06:56 +01:00
**** `rules/Sxxxx/[LANGUAGE]/metadata.json`: metadatas for the specific language. Each key at the top will completely override the key of the `metadata.json` file of the parent directory.
== Search rules
2021-06-02 10:58:42 +02:00
All specified rules (implemented or not) are listed in the https://sonarsource.github.io/rspec/#/[Search Page].
For each rule, you can find the languages it covers, the descriptions for each language as well as the related open tickets and pull requests. +
There will be a red warning with a link to the rule pull request if the rule has not been implemented yet (i.e. is not present on the main branch yet).
2021-02-19 09:06:56 +01:00
You can use the "Search in unimplemented" link on the Search Page to repeat your search in the PRs.
WARNING: Unlike the Search Page, the GitHub search across the PRs for unimplemented rules considers only the PR summary and title. It does not search the content of the proposed rule (i.e. it does not look into `rule.adoc` nor into `metadata.json`).
2021-02-19 09:06:56 +01:00
== Create or modify a rule
2021-06-02 10:58:42 +02:00
Before, the Languages Team used Jira to host both implemented and unimplemented rules. This is why the `rules` directory contains both too.
2021-02-19 09:06:56 +01:00
2021-06-02 10:58:42 +02:00
However, one of the reasons we are migrating to a git repository is that we want to have a clean process and history for rule creation and modification. Thus every newly created rule or modification of rule should follow this workflow:
2021-02-19 09:06:56 +01:00
=== 1. Create a pull request
2021-02-19 09:06:56 +01:00
2021-06-02 10:58:42 +02:00
==== To create a new rule
. go to the https://github.com/SonarSource/rspec/actions/workflows/create_new_rspec.yml[Create new RSPEC] GitHub action
. click on the grey _Run wokflow_ button (on the right).
. in the field _"Comma-separated list of targeted languages"_ write the list of languages you want to specify this rule for. +
They can be any of the following:
include::supported_languages.adoc[]
2021-06-02 10:58:42 +02:00
. click on the green _Run workflow_ button.
image::img/new-rule-workflow.png[]
2021-02-19 09:06:56 +01:00
2021-06-02 10:58:42 +02:00
You should see https://github.com/pulls/assigned[a new pull request assigned to you]. It might take up to a few minutes to appear.
It contains a scaffolding of files for the new rule. Feel free to modify it as you please.
The title of the PR for a new rule will say only "Create rule Sxxxx", which is not very informative. +
Modify the title to better summarize the nature or the rule, so that it is easier to find when searching through unimplemented rules.
Do preserve the "Create rule Sxxxx" prefix, as it is used by our tooling.
For example:
----
Create rule S7028: All identifiers should be in CamelCase
----
Add the description of the PR to further increase its discoverability
(GitHub PR search does not see the `rule.adoc`).
To do that, click on the three dots (next to the smile) on the first comment (created by github-actions bot) and select "Edit".
The rule must contain subdirectories corresponding to all the languages this rule will be implemented for (by the time the PR is merged).
Each language subdirectory contains the `rule.adoc` that is the root document used to render the specification.
The rule specification in `rule.adoc` can include other `*.adoc` files that are in the language subdirectory or in the parent directory by using the `include::content.adoc[]` syntax.
To reduce the number of turnarounds with the asciidoc edits you can install an asciidoc plugin.
Otherwise, you can use https://asciidoclive.com/[AsciiDocLIVE] and this https://docs.asciidoctor.org/asciidoc/latest/syntax-quick-reference/[cheatsheet].
==== To add language to an existing rule
If the rule exists on the main branch, create a PR named "Create rule Sxxxx[_language_]: _rule title_". For example:
----
Create rule S100[java]: Method names should comply with a naming convention
----
Otherwise, if the rule has not been merged yet (i.e. the rule has not been implemented by any plugin), you can use the already existing PR corresponding to this rule. +
Then,
* Create a subdirectory with the name of the language you want to add. +
It can be any of the following:
include::supported_languages.adoc[]
* Add two files in this subdirectory:
** `rule.adoc`: write down the whole description of the rule. If you want to include already existing parts (that are in the current or the parent directory), use the `include::` syntax.
** `metadata.json`: it automatically inherits from the `metadata.json` of the parent directory so you only need to write the parts that need to be overwritten. +
Please note that in any case this file should at least contain two curly braces (`{ }`)
2021-02-19 09:06:56 +01:00
==== To modify an existing rule
Create a branch for your modifications manually.
Then open a pull request manually.
The subject must start with the following required prefix:
----
Modify rule Sxxxx
----
Add a short summary of the PR after the required prefix. For example:
----
Modify rule S1234: Allow tail recursion for languages supporting TCO
----
==== To deprecate a rule
Create a branch for the deprecation manually.
Then open a pull request manually.
In the subject add the following text:
----
Deprecate rule Sxxxx
----
In the `metadata.json` of the rule you want to deprecate:
* Remove all tags
* Remove all quality profiles
* Change the status to `deprecated`
* Fill in the `replacementRules` field with the rules that deprecate this one, if any
NOTE: use a GitHub hot-key `t` in the source view to navigate to an existing rule specification.
2021-06-02 10:58:42 +02:00
=== 2. Ask for a review
2021-02-19 09:06:56 +01:00
2021-06-02 10:58:42 +02:00
Every PR that is creating or modifying a rule should be reviewed.
2021-02-19 09:06:56 +01:00
If it is a new rule, or if it requires the analyzer to change its implementation, do not merge the pull request yet.
2021-02-19 09:06:56 +01:00
If the change does not require an implementation, merge the pull request after the review.
2021-02-19 09:06:56 +01:00
2021-06-02 10:58:42 +02:00
=== 3. Create an implementation ticket
2021-02-19 09:06:56 +01:00
2021-06-02 10:58:42 +02:00
Create an implementation ticket as it is usually done for your plugin (i.e. as a Jira ticket or a Github issue). +
For this ticket to be correcty indexed on the search page of the rules, it has to contain the rule ID (RSPEC-1234 or S1234) either in the ticket title or in the ticket description. +
It is also recommended to add a link to the Github Page of the related rule, to ease the navigation between the ticket and the rule.
In the pull request adding the rule specification, add the following text referencing the implementation ticket:
----
2021-06-02 10:58:42 +02:00
Implementation ticket: CPP-1234 (for a CFamily ticket on Jira)
----
2021-06-02 10:58:42 +02:00
or
----
2021-06-02 10:58:42 +02:00
Implementation ticket: SonarSource/sonar-dotnet/issues/1234 (for a sonar-dotnet issue on Github)
----
2021-02-19 09:06:56 +01:00
2021-06-02 10:58:42 +02:00
=== 4. Implement the rule
Implement the rule or the modification as usual. +
Merge the RSPEC pull request before updating the metadata of the analyzer otherwise `rule-api` will not work. +
And finally, merge the rule implementation in your analyzer repository.
2021-02-19 09:06:56 +01:00
==== Generate/Update rule metadata for the analyzer
* Download the last version of https://github.com/SonarSource/sonar-rule-api[rule-api].
* call `generate` if you are adding a rule, or `update` if you just want the last specification version.
2021-02-19 09:06:56 +01:00
Example:
[source,shell]
----
$ java -jar rule-api-1.24.3.jar generate -rule S4328
2021-02-19 09:06:56 +01:00
# or
$ java -jar rule-api-1.24.3.jar update
----
NOTE: If you generate rules in an empty directory,
you have to run `update` immediately after,
because rule-api relies on the files in the directory to determine the covered set of rules
when generating the deprecation notes for superseded rules.
2021-02-19 09:06:56 +01:00
== Tooling
https://github.com/SonarSource/rspec/tree/master/rspec-tools[rspec-tools]::
A python CLI tool for adding and validating rules. It is used by GitHub checks and GitHub actions.
For more information see the README file in the `rspec-tools` directory.
https://github.com/SonarSource/rspec/tree/master/frontend[frontend]::
The GitHub page that enables the search for rules.
For more information see the README file in the `frontend` directory.
2021-02-19 09:06:56 +01:00
== RSPEC dataflow
2021-06-02 10:58:42 +02:00
The following graph shows the path of an RSPEC from its inception in Github RSPEC repository to its consumption in SQ/SC/SL or on rules.sonarsource.com: +
(The part that is grayed out corresponds to what existed before, when RSPECs were hosted in Jira)
2021-02-19 09:06:56 +01:00
image::img/RSPEC-flow-2.png[]
2021-02-19 09:06:56 +01:00
2021-06-02 10:58:42 +02:00
== Help
Tickets related to this RSPEC repository are in Jira, in the https://jira.sonarsource.com/projects/RULEAPI/issues/RULEAPI-324?filter=allopenissues[RULEAPI] project.
You found a bug, something is bothering you or you have an idea of how to improve the project? First, have a look at all the https://jira.sonarsource.com/projects/RULEAPI/issues/RULEAPI-324?filter=allopenissues[open tickets]. If you don't see anything related to your subject, please open a new ticket in the backlog, with `backlog` as the fix version.