mirror of
https://github.com/progval/irctest.git
synced 2025-04-05 06:49:47 +00:00
559 B
559 B
Contributing
Code style
Any color you like as long as it's 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
We also use isort
to order imports (in short: just
follow PEP 8)
You can use pre-commit to automatically run them
when you create a git commit.
Alternatively, run pre-commit run -a