Please send a pull request with a clear list of what you've done (read more about pull requests). Please follow our coding conventions (below) and make sure all of your commits are atomic (one feature per commit).
Always write a clear log message for your commits. One-line messages are fine for small changes, but bigger changes should look like this:
$ git commit -m "A brief summary of the commit
>
> A paragraph describing what changed and its impact."
The coding conventions are all defined in .editorconfig so installing EditorConfig plugins for your editor will help keep your changes consistent with the rest of the code.
The existing code should provide all the guidance needed, but here's a brief summary:
- use tabs for indentation, not spaces
- don't use newlines before braces
- use line continuation for lines over 80 chars