Skip to content
This repository has been archived by the owner on Feb 4, 2022. It is now read-only.

Latest commit

 

History

History
165 lines (117 loc) · 6.43 KB

CONTRIBUTING.md

File metadata and controls

165 lines (117 loc) · 6.43 KB

How to contribute

Contributions and patches are essential for the success of Kodekit. We simply
can't access the huge number of platforms and myriad configurations for running our code. We want to keep it as easy as possible to contribute changes that get things working in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.

Following these guidelines helps to communicate that you respect the time of the developers managing and developing our open source projects. In return, they should reciprocate that respect in addressing your issue or assessing patches and features.

Please take a moment to review this document in order to make the contribution process easy and effective for everyone involved.

Core vs Extensions

Kodekit is build to be extensible using components. New functionality is typically directed toward components to provide a slimmer core library, reducing its surface area, and to allow greater freedom for component maintainers to ship releases at their own cadence, rather than being held to the cadence of library releases.

If you are unsure of whether your contribution should be implemented as an component or part of the core library, you may visit timble/kodekit on Gitter or ask on the Kodekit dev mailing list for advice.

Using the issue tracker

The issue tracker is the preferred channel for bug reports, features requests and submitting pull requests, but please respect the following restrictions:

  • Please do not use the issue tracker for personal support requests (use the Kodekit mailing list).

  • Please do not derail or troll issues. Keep the discussion on topic and respect the opinions of others.

Bug reports

A bug is a demonstrable problem that is caused by the code in the repository. Good bug reports are extremely helpful - thank you!

Guidelines for bug reports:

  1. Use the GitHub issue search — check if the issue has already been reported.

  2. Check if the issue has been fixed — try to reproduce it using the latest master or development branch in the repository.

  3. Isolate the problem — make sure that the code in the repository is definitely responsible for the issue.

A good bug report shouldn't leave others needing to chase you up for more information. Please try to be as detailed as possible in your report.

Feature requests

Feature requests are welcome. But take a moment to find out whether your idea fits with the scope and aims of the project. It's up to you to make a strong case to convince the Joomlatools developers of the merits of this feature. Please provide as much detail and context as possible.

Pull requests

Good pull requests - patches, improvements, new features - are a fantastic help. They should remain focused in scope and avoid containing unrelated commits.

Please ask first before embarking on any significant pull request (e.g. implementing features, refactoring code), otherwise you risk spending a lot of time working on something that the developers might not want to merge into the project.

Please adhere to the coding conventions used throughout the project (indentation, comments, etc.).

Adhering to the following this process is the best way to get your work merged:

  1. Fork the repo, clone your fork, and configure the remotes:

    # Clone your fork of the repo into the current directory
    git clone https://github.com/<your-username>/<repo-name>
    # Navigate to the newly cloned directory
    cd <repo-name>
    # Assign the original repo to a remote called "upstream"
    git remote add upstream https://github.com/<upsteam-owner>/<repo-name>
  2. If you cloned a while ago, get the latest changes from upstream:

    git checkout <dev-branch>
    git pull upstream <dev-branch>
  3. Create a new topic branch (off the main project development branch) to contain your feature, change, or fix:

    git checkout -b <topic-branch-name>
  4. Commit your changes in logical chunks. Please adhere to these git commit message guidelines or your code is unlikely be merged into the main project. Use Git's interactive rebase feature to tidy up your commits before making them public.

  5. Locally merge (or rebase) the upstream development branch into your topic branch:

    git pull [--rebase] upstream <dev-branch>
  6. Push your topic branch up to your fork:

    git push origin <topic-branch-name>
  7. Open a Pull Request with a clear title and description.

To increase the chance that your pull request is accepted make sure to write tests and good commit messages.

Contributor Guidelines

Copyright

As a contributor, you retain the copyright to your code, however by contributing code to one of our Joomlatools code repositories you are releasing your code under the same license terms as specified in the LICENSE.txt file included in each repository. In most cases this will be the GPLv3 or MPLv2 licenses.

Code of Conduct

The community is one of the best features of our Joomlatools projects, and we want to ensure it remains welcoming and safe for everyone. We have adopted the Open Code of Conduct for all projects in the @timbleHQ GitHub organization, our discussion forum, and gitter chat room.

This code of conduct outlines the expectations for all community members, as well as steps to report unacceptable behavior. We are committed to providing a welcoming and inspiring community for all and expect our code of conduct to be honored.

Read more about the Open Code of Conduct on the TODO Group blog.