Skip to content

Latest commit

 

History

History
67 lines (46 loc) · 957 Bytes

CONTRIBUTING.md

File metadata and controls

67 lines (46 loc) · 957 Bytes

How to Contribute

  1. Follow the code style
if (...)
{
	
}

if (...)
	return;

try
{
	
}
catch (...)
{
	
}

for (int i = 0; i<=1; i++)
{
	
}

foreach (Type variable in new Type())
{
	
}

foreach (var variable in new Dictionary<string, string>().keys)
{
	
}

while (...)
{
	
}

using (...)
{
	
}

private int _name;
public int Name;
public int Name { get; private set; }
Only use var when using foreach with a dictionary's key or value sets.

public void Example(int argName)
{
	
}

~bit
~(bit ^ 0xFF)
((bit & 0xFF) | 0xFF) >> 0xFF
  1. Push changes to a new local branch to the 'dev' branch. ('contributor-feature' -> 'dev')
  2. You are encouraged to start a PR early so we can spy on what you are working on! How to do that
  3. Versions should not be bumped at all
  4. gitignore is free game add anything that fits
  5. Do not use #region
  6. Tabs only. Spaces will not be accepted.