xref: /aosp_15_r20/external/okio/CONTRIBUTING.md (revision f9742813c14b702d71392179818a9e591da8620c)
1Contributing
2============
3
4Keeping the project small and stable limits our ability to accept new contributors. We are not
5seeking new committers at this time, but some small contributions are welcome.
6
7If you've found a security problem, please follow our [bug bounty][security] program.
8
9If you've found a bug, please contribute a failing test case so we can study and fix it.
10
11Before code can be accepted all contributors must complete our
12[Individual Contributor License Agreement (CLA)][cla].
13
14
15Code Contributions
16------------------
17
18Get working code on a personal branch with tests passing before you submit a PR:
19
20```
21./gradlew clean check
22```
23
24Please make every effort to follow existing conventions and style in order to keep the code as
25readable as possible.
26
27Contribute code changes through GitHub by forking the repository and sending a pull request. We
28squash all pull requests on merge.
29
30
31Committer's Guides
32------------------
33
34 * [Releasing][releasing]
35
36 [cla]: https://spreadsheets.google.com/spreadsheet/viewform?formkey=dDViT2xzUHAwRkI3X3k5Z0lQM091OGc6MQ&ndplr=1
37 [releasing]: http://square.github.io/okio/releasing/
38 [security]: http://square.github.io/okio/security/
39