Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 1.75 KB

CONTRIBUTING.md

File metadata and controls

35 lines (27 loc) · 1.75 KB

Contributing guidelines

Looking for help?

You have the following options:

Found a bug?

Provide detailed steps to reproduce and make sure this bug is not related to your custom project or environment. Ideally, create Pull Request with failing unit test (or more tests).

Want a few feature or improvement?

This is tiny library, so I would avoid overcomplicating it, but if you think a new feature would be useful and make this project better, then create a new issue. After that, we can discuss it and work on a Pull Request.

Want to create a Pull Request?

Before creating new Pull Request, please create a new issue and discuss the problem. If we agree that PR will be reasonable solution, then fork repository, create a separate branch and work on a feature or bug-fix on this branch. When you're done, make sure that project passes static code analysis verification with ./gradlew check command. Moreover, format your code according to SquareAndroid Java Code Styles. When you performed more commits than one, squash them into one within a single PR (you can use http://rebaseandsqua.sh/ website). Make sure that your commit message is descriptive enough. If not, then use git commit --amend command and change it.