This repository has been archived on 2025-01-01. You can view files and clone it, but cannot push or open issues or pull requests.
ShiftOS_TheReturn/CONTRIBUTING.md

46 lines
817 B
Markdown
Raw Normal View History

2017-01-10 15:43:14 -05:00
# Contributing to ShiftOS
2017-03-23 20:45:42 -04:00
## Reporting Bugs / Suggesting Enhancements
2017-01-10 15:43:14 -05:00
2017-03-23 20:45:42 -04:00
### Issue Template
2017-01-10 15:43:14 -05:00
2017-03-23 20:45:42 -04:00
#### What you expected to happen
2017-01-10 15:43:14 -05:00
2017-03-23 20:45:42 -04:00
#### What actually happened
#### Steps To Reproduce
# What you expected to happen
# What actually happened
# Steps To Reproduce
### Suggestion Template
#### What should be added to the game/api
#### Why it should be added
# What should be added to the game/api
# Why it should be added
2017-01-10 15:43:14 -05:00
## Pull Requests
Follow our code style
PublicVariableNames privateVariableNames CONSTANT_VARIABLE_NAMES
PublicMethodNames privateMethodNames
2017-03-23 20:45:42 -04:00
ClassNamesLikeThis
2017-01-10 15:43:14 -05:00
{
2017-03-23 20:45:42 -04:00
public Type VariableName;
public void BracketsOnNewLines()
{
var variableName;
}
2017-01-10 15:43:14 -05:00
}
2017-03-23 20:45:42 -04:00
Insert licenses at the top of ALL `.cs` files