You can ask questions, bring up issues, or garner feedback through the following channels:
- Slack
- GitHub Issues
- Email: send an email to [email protected]
- Break your work into small, single-purpose patches if possible. It's much harder to merge in a large change with a lot of disjoint features.
- Submit the patch as a GitHub pull request against the master branch.
- Make sure that your code passes the automated tests.
- Run
pip3 install pre-commit; pre-commit install
to create a git hook that will run the linter and automatically format your code when you commit. If the hook reformats your code, you'll need togit add
the changed files again.