irctest/CONTRIBUTING.md

17 lines
444 B
Markdown
Raw Normal View History

2021-02-22 18:02:13 +00:00
# Contributing
## Code style
Any color you like as long as it's [Black](https://github.com/psf/black).
In short:
* 88 columns
* double quotes
* avoid backslashes at line breaks (use parentheses)
* closing brackets/parentheses/... go on the same indent level as the line
that opened them
You can use [pre-commit](https://pre-commit.com/) to automatically run it
for you when you create a git commit.
Alternatively, run `pre-commit run -a`