I'm really glad you're reading this.
Please send a GitHub Pull Request to pboted with a clear list of what you've done (read more about pull requests).
Please follow style convention 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."
After a short discussion, one of the coding styles will be determined, which better meets our requirements.
But for now:
- We indent using two spaces
- We put spaces after:
- list items (
[1, 2, 3]
, not[1,2,3]
) - method parameters (
function (var1, var2)
, notfunction(var1,var2)
) - around operators (
x += 1
, notx+=1
)
- list items (
For now, that's all.
If you have any questions about the code or styles, you can find me in [#dev]
channel on ilita IRC network in to I2P.
Sincerely yours,
polistern