Thanks for your interest in contributing to the project! Here's a rundown of how we'd like to work with you:
- File an issue on GitHub describing the contribution you'd like to make. This will help us to get you started on the right foot.
- Create a single commit that addresses the issue:
- Follow the project's code style (see below)
- Add enough unit tests to "prove" that your patch is correct
- Update the project documentation as needed (see below)
- Describe your approach with as much detail as necessary in the git commit message
- Open a pull request, and reference the initial issue in the pull request message.
Any API change should be reflected in the project's README.md file. Reuse jQuery's documentation wherever possible, but take care to note aspects that make Cheerio distinct.
This section is by no means complete. For undocumented stylistic choices, please try to maintain consistency with the code base.
- Single quotes:
'
- Whitespace
- Two-space "soft" tabs
- Once space following control flow statements (
if (condition) {
rather thanif(condition) {
) - Remove trailing spaces
- End each file with a newline character.
- Terminate every statement with a semicolon