Splinter Community

Welcome!

Splinter is an open source project on GitHub. We encourage you to join the Splinter community and contribute to this project in the following ways:

Chat at splinterworld.slack.com. Join us on Slack to ask questions, tell us about a bug, or propose changes and new features. Get an invite by visiting join.splinter.dev.

Report bugs: We track bugs as GitHub issues at Cargill/splinter/issues.

Contribute code: Splinter software is licensed under the Apache License Version 2.0 software license. This project accepts GitHub pull requests. For more information, see “Contributing Code”, below.

Join the monthly engineering forum: We host an open Zoom meeting to present brief updates on Splinter development and to provide a way for the Splinter developer community to connect with each other and with us. Please see splinterworld.slack.com for next meeting link and time.

Splinter operates under the Cargill Code of Conduct.

Contributing Code

Splinter source code is hosted on GitHub in the Cargill/splinter repository. When contributing code, please follow these guidelines:

  • Fork the repository and make your changes in a feature branch.

  • Make sure that the unit and integration tests run successfully.

  • If your changes affect the existing tests, update those tests as necessary. For a new feature, include new unit and integration tests for the feature.

  • Ensure that the lint tests pass.

  • Plan the commit or commits for your pull request. A pull request can contain a single commit or multiple commits. Most importantly, each commit should represent a self-contained change, such as a single fix or enhancement. For example, do not create a single commit that fixes a bug and adds a feature (create two commits instead). Use a single commit for all changes that fix a single issues (not multiple commits).

  • Follow these guidelines for commit messages:

  • Important: If you need to rebase your pull request, be sure to rebase it against the current main branch. Do not merge the current main branch with your topic branch. Do not use the “Update Branch” button provided by GitHub on the pull request page.