CONTRIBUTING - remove link to specific Issues (so we can use this file

for all the projects)
This commit is contained in:
dceejay 2015-04-27 21:03:14 +01:00
parent 7b4cbbe816
commit 56e8c143dd
1 changed files with 8 additions and 18 deletions

View File

@ -6,11 +6,10 @@ We welcome contributions, but request you follow these guidelines.
- [Feature requests](#feature-requests) - [Feature requests](#feature-requests)
- [Pull-Requests](#pull-requests) - [Pull-Requests](#pull-requests)
- [Contributor License Agreement](#contributor-license-agreement) - [Contributor License Agreement](#contributor-license-agreement)
## Raising issues ## Raising issues
Please raise any bug reports on the project's Please raise any bug reports on the relevant project's issue tracker. Be sure to
[issue tracker](https://github.com/node-red/node-red/issues?state=open). Be sure to
search the list to see if your issue has already been raised. search the list to see if your issue has already been raised.
A good bug report is one that make it easy for us to understand what you were A good bug report is one that make it easy for us to understand what you were
@ -25,7 +24,6 @@ At a minimum, please include:
- Version of Node-RED - either release number if you downloaded a zip, or the first few lines of `git log` if you are cloning the repository directly. - Version of Node-RED - either release number if you downloaded a zip, or the first few lines of `git log` if you are cloning the repository directly.
- Version of node.js - what does `node -v` say? - Version of node.js - what does `node -v` say?
## Feature requests ## Feature requests
For feature requests, please raise them on the [mailing list](https://groups.google.com/forum/#!forum/node-red). For feature requests, please raise them on the [mailing list](https://groups.google.com/forum/#!forum/node-red).
@ -33,15 +31,15 @@ For feature requests, please raise them on the [mailing list](https://groups.goo
## Pull-Requests ## Pull-Requests
If you want to raise a pull-request with a new feature, or a refactoring If you want to raise a pull-request with a new feature, or a refactoring
of existing code, it may well get rejected if you haven't discussed it on of existing code, it may well get rejected if you haven't discussed it on
the [mailing list](https://groups.google.com/forum/#!forum/node-red) first. the [mailing list](https://groups.google.com/forum/#!forum/node-red) first.
### Contributor License Agreement ### Contributor License Agreement
In order for us to accept pull-requests, the contributor must first complete In order for us to accept pull-requests, the contributor must first complete
a Contributor License Agreement (CLA). This clarifies the intellectual a Contributor License Agreement (CLA). This clarifies the intellectual
property license granted with any contribution. It is for your protection as a property license granted with any contribution. It is for your protection as a
Contributor as well as the protection of IBM and its customers; it does not Contributor as well as the protection of IBM and its customers; it does not
change your rights to use your own Contributions for any other purpose. change your rights to use your own Contributions for any other purpose.
You can download the CLAs here: You can download the CLAs here:
@ -59,13 +57,5 @@ code base. Some basic rules include:
- all files must have the Apache license in the header. - all files must have the Apache license in the header.
- indent with 4-spaces, no tabs. No arguments. - indent with 4-spaces, no tabs. No arguments.
- opening brace on same line as `if`/`for`/`function`/etc, closing brace on its - opening brace on same line as `if`/`for`/`function` and so on, closing brace
own line. on its own line.