vscode/CONTRIBUTING.md

27 lines
1.4 KiB
Markdown
Raw Normal View History

2015-12-10 15:36:26 +01:00
## Contributing Issues
### Before Submitting an Issue
First, please do a search in open issues to see if the issue or feature request has already been filed. If there is an issue add your comments to this issue.
2016-04-22 21:54:32 +02:00
The Code project is distributed across multiple repositories, try to file the issue against the correct repository [Related Projects](https://github.com/Microsoft/vscode/wiki/Related-Projects).
2015-12-10 15:36:26 +01:00
If your issue is a question then please ask the question on [Stack Overflow](https://stackoverflow.com/questions/tagged/vscode) using the tag `vscode`.
2015-12-10 15:36:26 +01:00
## Writing Good Bug Reports and Feature Requests
File a single issue per problem and feature request, do not file combo issues.
The more information you can provide, the more likely someone will be successful reproducing the issue and finding a fix. Therefore:
2016-07-15 16:05:52 +02:00
* Provide reproducible steps, what the result of the steps was, and what you would have expected.
2015-12-10 15:36:26 +01:00
* Description of what you expect to happen
* Animated GIFs
* Code that demonstrates the issue
* Version of VS Code
* Errors in the Dev Tools Console (Help | Toggle Developer Tools)
* When you have extensions installed, can you reproduce the issue when starting vscode without extensions by using the `--disable-extensions` command line argument?
2015-12-10 15:36:26 +01:00
## Contributing Fixes
If you are interested in fixing issues and contributing directly to the code base,
2016-04-22 21:54:32 +02:00
please see the document [How to Contribute](https://github.com/Microsoft/vscode/wiki/How-to-Contribute).