If you encounter a problem when using OCamlFormat or if you have any questions, please open a GitHub issue.
- Check first if your issue has already been reported.
- Include the version of OCamlFormat you are using (
ocamlformat --version
). - Include a (preferably short) source file which demonstrates the issue.
- Describe the expected and actual behavior.
- Do not unsubscribe from the issue until it is closed, the maintainers may ask for your feedback.
When acknowledged, the project maintainers will add labels to your issue throughout its lifespan.
We actively welcome pull requests.
- Prior to investing a large amount of time into significant or invasive changes, or those that affect the output, it is likely more efficient to first open an issue for discussion and planning.
- If you are not familiar with the project, focus first on the Good first issues.
- Fork the repository and create your branch from
main
. - If you have added code that should be tested, add tests (they should be located in the
tests/passing
directory). '. - Ensure the test suite passes (see Running the tests).
- If you haven't already, complete the Contributor License Agreement ("CLA").
When acknowledged, the project maintainers will add labels to your pull request throughout its lifespan.
Once OCamlFormat has been built, run make test
to check for regressions.
The first step of make test
is to ensure that invoking OCamlFormat on its own source code produces the same source code (you can run make fixpoint
to only check this). If OCamlFormat is not integrated with the editor you use, you should run make fmt
to reformat all OCamlFormat source files.
The second part of make test
is to ensure the test suite passes. You should not see any unexpected diff. One can accept all diffs at once with make regtests-promote
.
Once make test
passes, pull requests should be tested on the code in a set of external repositories. This can be done by executing tools/test_branch.sh <rev>
where <rev>
is the git revision/branch containing the pull request's changes. If a pull request affects an option, OCAMLFORMAT=<option>=<value> tools/test_branch.sh <rev>
should also be run to test with the option enabled.
The tools/test_branch.sh
script runs two versions of ocamlformat
(the specified branch, or HEAD
if omitted, and its merge base with main) on the test code and reports the differences in the formatted code. Formatting failures may also be reported on the terminal, these will need to be fixed before a pull request can be merged. The differences should be inspected to ensure they are as intended. Pull requests changing the format of code should generally introduce an option to enable the alternate style (if in doubt, open an issue for discussion). Any differences in the formatted code with the option disabled should be summarized and explained in the pull request discussion.
To benefit from the autocompletion of git branch names in the tools/test_branch.sh
script, if you use the bash
shell, add the following line to your ~/.bashrc
file:
source <path-to-ocamlformat>/tools/ocamlformat_test_branch
If you use the zsh
shell, add the following lines to your ~/.zshrc
file:
autoload bashcompinit
bashcompinit
source <path-to-ocamlformat>/tools/ocamlformat_test_branch
In order to accept your pull request, we need you to submit a CLA. You only need to do this once to work on any of Facebook's open source projects. Complete your CLA here: https://code.facebook.com/cla. If you have any questions, please drop us a line at [email protected].
By contributing to OCamlFormat, you agree that your contributions will be licensed under the LICENSE file in the root directory of this source tree.
- CLA Signed: Added automatically as long as the user signed the Contributor License Agreement (see above)
- Good-first-issue: This issue is a good entry point in the project for new contributors
- Kind/Bug: This issue describes a problem or this contribution addresses a problem (erroneous/unintended behavior)
- Kind/Docs: This is related to a documentation change (user documentation or source code documentation)
- Kind/Feature-request: This issue or contribution proposes a new feature
- Kind/Style-suggestion: This issue or contribution proposes a style modification for the formatted output
- Kind/To-discuss: Discussion needed to converge to a solution
Feel free to contribute on the Help wanted issues and pull requests.