Thank you for your interest in this project!
We use GitHub Issues for trackings issues and features. You can make a contribution by:
- Reporting an issue or making a feature request here.
- Fixing an issue or adding a feature yourself and contributing your code to this project (see below).
- Fork and git clone terraform-docs.
- Create a new git branch from the master branch where you develop your changes.
- Create a Pull Request for your contribution by following the instructions in the pull request template here.
- Perform a code review with the project maintainers on the pull request. We may suggest changes, improvements or alternatives.
- Once approved, your code will be merged into
master
and your name will be included inAUTHORS
.
Pull requests have to meet the following requirements:
-
Tests: Code changes need to be tested with code and tests being located in the same folder (see packages doc and print for examples). Make sure that your tests pass using
make test
. -
Documentation: Pull requests need to update the documentation together with the code change.
-
Commits: Commits should be as small as possible while ensuring that each commit compiles and passes tests independently. Write good commit messages. If needed, squash your commits prior to submission.
-
Code Style: Use gofmt to format your code. If useful, include code comments to support your intentions.