diff options
author | Janos Gyerik <janos.gyerik@sonarsource.com> | 2019-03-25 16:08:37 +0100 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2019-03-26 13:37:57 +0100 |
commit | cc6b7650d161158a94a31f998ebf1e5aeae3240c (patch) | |
tree | 3fdfe392f43fde08100ba8523777efd09bff213d /docs | |
parent | 7db09e73096db1ca72716cff619356f5c5f1cb86 (diff) | |
download | sonarqube-cc6b7650d161158a94a31f998ebf1e5aeae3240c.tar.gz sonarqube-cc6b7650d161158a94a31f998ebf1e5aeae3240c.zip |
Add contributing guide, revise related docs
Diffstat (limited to 'docs')
-rw-r--r-- | docs/PULL_REQUEST_TEMPLATE.md | 8 | ||||
-rw-r--r-- | docs/contributing.md | 13 |
2 files changed, 21 insertions, 0 deletions
diff --git a/docs/PULL_REQUEST_TEMPLATE.md b/docs/PULL_REQUEST_TEMPLATE.md new file mode 100644 index 00000000000..df387710d94 --- /dev/null +++ b/docs/PULL_REQUEST_TEMPLATE.md @@ -0,0 +1,8 @@ +Please review our [contribution guidelines](https://github.com/SonarSource/sonarqube/blob/master/contributing.md). + +And please ensure your pull request adheres to the following guidelines: + +- [ ] Please explain your motives to contribute this change: what problem you are trying to fix, what improvement you are trying to make +- [ ] Use the following formatting style: [SonarSource/sonar-developer-toolset](https://github.com/SonarSource/sonar-developer-toolset#code-style) +- [ ] Provide a unit test for any code you changed +- [ ] If there is a [JIRA](http://jira.sonarsource.com/browse/SONAR) ticket available, please make your commits and pull request start with the ticket ID (SONAR-XXXX) diff --git a/docs/contributing.md b/docs/contributing.md new file mode 100644 index 00000000000..3750337ea32 --- /dev/null +++ b/docs/contributing.md @@ -0,0 +1,13 @@ +Contributing +============ + +If you would like to see a new feature, please create a new thread in the forum ["Suggest new features"](https://community.sonarsource.com/c/suggestions/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](https://github.com/SonarSource/sonar-developer-toolset#code-style) and all tests are passing (Travis build is executed for each pull request). + +Thank You! +The SonarSource Team |