Skip to content

Commit

Permalink
docs: CONTRIBUTING.md (#46)
Browse files Browse the repository at this point in the history
* Add CONTRIBUTING.md guide.

* docs: add details about commit message, Luacheck, and CI.

* fix: correct name of test folder.

* docs: clarify contributing notes in readme.
  • Loading branch information
josh-nz authored Jun 1, 2024
1 parent 22d7b41 commit 724b3b6
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 9 deletions.
48 changes: 48 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Contributing

Contributions are welcome. What is expected from contributors is outlined below. If at any stage you require help, please just ask!

## Issues first

If there is something specific you want to work on, then please open an issue/discussion first to avoid duplication of efforts. Then:

1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Make your changes
4. Review the steps below before committing your changes
5. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
6. Push to the Branch (`git push origin feature/AmazingFeature`)
7. Open a Pull Request

## Before committing changes

### Update documentation

Ensure that the `README.md` is updated where changed due to the new feature.

### Lua annotations

Any new or changed functions and module level locals should be annotated with Lua specs. These not only provide documentation but also assist the Language Server with completion and signature information. You can learn more about Lua annotations [here](https://luals.github.io/wiki/annotations/).

### Add tests

Tests should be added to cover any changes or new features. These can be found in the `tests` folder. To run the tests, [Make](https://www.gnu.org/software/make/) is required. Run `make test` from the repository root.

### Format code

This project uses [StyLua](https://github.com/JohnnyMorganz/StyLua) to ensure consistent code formatting.

The StyLua documentation details a number of ways this tool can be installed, including an executable you can just download. Then from the root of this repository run `stylua -g **/*.lua` (or `stylua -g **\*.lua` if on Windows).

Please run StyLua before committing your code. Do not commit the StyLua executable to this repository.

### Lint code

This project uses [Luacheck](https://github.com/mpeterv/luacheck) for static analysis and linting of the code.

### Continuous integration
The CI system used by this repository will run the tests, check the code formatting with Stylua, and lint the code with Luacheck. These checks must pass before a pull request can be merged, so performing these tasks locally first before committing will avoid having to push fix up commits.

### Conventional commits for Commits and PR

Please use the [Conventional Commits Specification](https://www.conventionalcommits.org/en/v1.0.0/) when writing your commit messages.
14 changes: 5 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,14 +85,10 @@ This plugin supports stable and nightly. >0.9 at the time of writing.

Contributions are what makes the open-source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.

If you have a suggestion to improve the plugin, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
Don't forget to give the project a star! Thanks again!
If you have a suggestion to improve the plugin, please open an issue first, fork the repo, and create a pull request.

If you have found a bug please open an issue, and submit a pull request with a failing test if possible.

If there is something specific you want to work on then, please open an issue/discussion first to avoid duplication of efforts
If you have found a bug please open an issue, or submit a PR with a failing test.
More details on how to contribute can be found in CONTRIBUTING.md. Please read this prior to creating a pull request.

1. Fork the Project
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
4. Push to the Branch (`git push origin feature/AmazingFeature`)
5. Open a Pull Request
Don't forget to give the project a star! Thanks again!

0 comments on commit 724b3b6

Please sign in to comment.