You want to help? You rock! Now, take a moment to be sure your contributions make sense to everyone else.
Found a problem? Want a new feature?
- See if your issue or idea has already been reported.
- Provide a reduced test case or a live example.
These are as easy to do as they are to forget. So, to keep things moving along, issues that do not meet these standards will be removed after 1 day.
And remember, a bug is a demonstrable problem caused by our code.
Pull requests are the greatest contributions, so be sure they are focused in scope, and do avoid unrelated commits.
-
To begin, fork this project, clone your fork, and add our upstream.
# Clone your fork of the repo into the current directory git clone https://github.com/<your-username>/flexibility # Navigate to the newly cloned directory cd flexibility # Assign the original repo to a remote called "upstream" git remote add upstream https://github.com/jonathantneal/flexibility # Install the tools necessary for development npm install
-
Create a branch for your feature or fix:
# Move into a new branch for a feature git checkout -b feature/thing
# Move into a new branch for a fix git checkout -b fix/something
-
Be sure your code follows our practices.
# Test current code npm run test
-
Push your branch up to your fork:
# Push a feature branch git push origin feature/thing
# Push a fix branch git push origin fix/something
-
Now open a pull request with a clear title and description.
To learn more about Flexibility, read the support section.
If you experience an issue, read the contributing section before creating an issue.